:root {
    
    --bg-dark: #050b14;
    --bg-darker: #02050a;
    --primary-gold: #d7263d;
    --primary-gold-glow: rgba(215, 38, 61, 0.5);
    --accent-orange: #ff7b00;
    --text-main: #e0e6ed;
    --text-muted: #8a9bb0;
    --glass-bg: rgba(10, 18, 30, 0.6);
    --glass-border: rgba(215, 38, 61, 0.2);
    --success-green: #00ff88;
    --danger-red: #ff3366;
    
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-darker);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}


.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.node-network {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.character-silhouette {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 60vw;
    height: 80vh;
    background: none;
    background-size: contain;
    opacity: 0.1;
    filter: blur(2px);
}


h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

.highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--primary-gold-glow);
}

.text-green { color: var(--success-green); }
.text-gold { color: var(--primary-gold); }


.ddz-email-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ddz-email-privacy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ddz-email-value.ddz-blurred {
    filter: blur(10px);
}

.ddz-email-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

.ddz-email-toggle:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.14);
}


.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #b31224);
    color: #000;
    box-shadow: 0 0 15px var(--primary-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--primary-gold-glow);
    background: linear-gradient(135deg, #ff3b55, var(--primary-gold));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752C4;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.full-width {
    width: 100%;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled, .navbar.sticky {
    background: rgba(2, 5, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 5%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    font-weight: 600;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success-green);
    animation: pulse 2s infinite;
}

.nav-center {
    display: flex;
    gap: 25px;
}

.nav-center a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-center a:hover, .nav-center a.active {
    color: var(--text-main);
}

.nav-center a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    box-shadow: 0 0 5px var(--primary-gold);
}

.page-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.nav-right a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--primary-gold);
}


.discord-login-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 6px 20px 6px 6px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(246, 0, 0, 0.13);
    overflow: hidden;
}

.discord-login-btn:hover {
    color: #ff0000 !important;
    transform: translateY(-2px);
    border-color: #821c1c9c;
    background: rgba(184, 148, 96, 0.08);
    box-shadow: 0 4px 15px rgba(212, 12, 12, 0.2);
}

.discord-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.493);
}

.discord-login-glow {
    display: none;
}

.discord-login-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.discord-login-content i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #e0e6ed;
    color: #1a1c23;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.discord-login-btn:hover .discord-login-content i {
    transform: scale(1.05);
}


.nav-icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.nav-icon-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(215, 38, 61, 0.35);
    color: var(--primary-gold);
    transform: translateY(-1px);
}

.ddz-nav-popover {
    position: fixed;
    top: 72px;
    left: 50vw;
    width: min(460px, calc(100vw - 24px));
    border-radius: 18px;
    background: rgba(2, 5, 10, 0.86);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translate(-50%, -6px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    overflow: hidden;
    z-index: 150;
}

.ddz-nav-popover.active {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.ddz-popover-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ddz-popover-head i {
    color: var(--primary-gold);
}

.ddz-popover-title {
    font-weight: 750;
    color: rgba(215, 38, 61, 0.92);
    letter-spacing: 0.3px;
}

.ddz-popover-body {
    padding: 26px 18px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(138, 155, 176, 0.95);
    text-align: center;
}


.ddz-search-modal.modal {
    max-width: 780px;
    padding: 26px;
}

.ddz-search-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-right: 42px;
}

.ddz-search-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.ddz-search-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ddz-search-title h2 {
    margin: 0;
    font-size: 1.35rem;
    color: rgba(215, 38, 61, 0.92);
    letter-spacing: 0.2px;
}

.ddz-search-title p {
    margin: 0;
    color: rgba(138, 155, 176, 0.95);
    font-size: 0.92rem;
}

.ddz-search-input {
    position: relative;
    margin-top: 16px;
}

.ddz-search-input i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(138, 155, 176, 0.9);
}

.ddz-search-input input {
    width: 100%;
    height: 54px;
    padding: 12px 48px 12px 48px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: border-color 220ms ease, box-shadow 220ms ease;
    font-family: var(--font-main);
}

.ddz-search-input input:focus {
    border-color: rgba(215, 38, 61, 0.6);
    box-shadow: 0 0 0 3px rgba(215, 38, 61, 0.18);
}

.ddz-search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(138, 155, 176, 0.95);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.ddz-search-clear:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(215, 38, 61, 0.35);
    color: var(--primary-gold);
}

.ddz-search-hints {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: rgba(138, 155, 176, 0.9);
    font-size: 0.78rem;
}

.ddz-search-hints .kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(138, 155, 176, 0.95);
    font-weight: 650;
    letter-spacing: 0.3px;
    min-width: 38px;
}

.ddz-search-results {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 320px;
    overflow: auto;
    padding-right: 6px;
}

.ddz-search-empty {
    padding: 18px 8px;
    color: rgba(138, 155, 176, 0.95);
    text-align: center;
}

.ddz-search-item {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    cursor: pointer;
    transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.ddz-search-item:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(215, 38, 61, 0.35);
}

.ddz-search-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(215, 38, 61, 0.45);
    color: rgba(215, 38, 61, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 850;
    letter-spacing: 0.2px;
    flex-shrink: 0;
    position: relative;
}

.ddz-search-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(2, 5, 10, 0.9);
    background: rgba(138, 155, 176, 1);
}

.ddz-search-status.online {
    background: var(--success-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.35);
}

.ddz-search-item-main {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ddz-search-item-title {
    font-weight: 750;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ddz-search-item-sub {
    color: rgba(138, 155, 176, 0.95);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 20px;
    transition: background 0.3s;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.05);
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
}

.username {
    font-size: 0.9rem;
    font-weight: 600;
}


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.live-data-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 123, 0, 0.1);
    border: 1px solid rgba(255, 123, 0, 0.3);
    color: var(--accent-orange);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-orange);
    animation: pulse-orange 2s infinite;
}

.main-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.main-title .zrp {
    font-size: 5rem;
    background: linear-gradient(to bottom, #fff, #8a9bb0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}


.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.map-panel {
    width: 100%;
    max-width: 600px;
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.panel-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.panel-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
}

.panel-status {
.user-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}
.user-profile-link:hover {
    opacity: 0.95;
}
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(0, 255, 136, 0.1);
    color: var(--success-green);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    letter-spacing: 1px;
}

.map-container {
    flex: 1;
    position: relative;
    background: #0a1118;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(215, 38, 61, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 38, 61, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}


.map-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(20,30,45,0.8) 0%, rgba(10,17,24,1) 70%);
    z-index: -1;
}

.marker {
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    z-index: 10;
}

.player-marker {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--primary-gold-glow);
    border-radius: 50%;
    animation: pulse-marker 2s infinite;
    z-index: -1;
}

.home-marker { color: #4facfe; }
.job-marker { color: #ff7b00; }

.map-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.map-controls button {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.map-controls button:hover {
    background: var(--primary-gold);
    color: black;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: white;
}

.modal h2 {
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.modal p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 40px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.3s;
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 15px;
}

.input-group i.fa-align-left, .input-group i.fa-pen {
    top: 25px;
}


.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th, .admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table th {
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.action-btns {
    display: flex;
    gap: 10px;
}

.btn-approve {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success-green);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.btn-approve:hover {
    background: var(--success-green);
    color: black;
}

.btn-reject {
    background: rgba(255, 51, 102, 0.1);
    color: var(--danger-red);
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.btn-reject:hover {
    background: var(--danger-red);
    color: white;
}

.input-group input:focus {
    border-color: var(--primary-gold);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 10px;
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-footer a {
    color: var(--primary-gold);
    text-decoration: none;
}


.dashboard-body {
    padding-top: 80px;
}


.profile-body {
    padding-top: 80px;
}

.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 80px);
}

.profile-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 14px;
}

.profile-back:hover {
    color: var(--text-main);
}

.profile-hero {
    padding: 20px;
    margin-bottom: 16px;
}

.profile-hero-inner {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 18px;
    align-items: center;
}

.profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-name {
    font-size: 2.1rem;
    letter-spacing: 1px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(215, 38, 61, 0.35);
    background: rgba(215, 38, 61, 0.10);
    color: var(--primary-gold);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.profile-sub {
    color: var(--text-muted);
    margin-top: 4px;
}

.profile-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(138, 155, 176, 0.95);
    font-size: 0.85rem;
}

.profile-side {
    display: flex;
    justify-content: flex-end;
}

.profile-corner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.18);
    color: var(--primary-gold);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.profile-corner-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--success-green);
    box-shadow: none;
}

.profile-alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin: 10px 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-alert-ok {
    border-color: rgba(255, 255, 255, 0.10);
}

.profile-alert-ok i {
    color: var(--success-green);
}

.profile-alert-err {
    border-color: rgba(255, 255, 255, 0.10);
}

.profile-alert-err i {
    color: var(--danger-red);
}

.profile-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.profile-tab {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.18);
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 700;
}

.profile-tab.active {
    background: rgba(215, 38, 61, 0.10);
    border-color: rgba(215, 38, 61, 0.25);
    color: var(--primary-gold);
}

.profile-grid {
    display: block;
}

.profile-view {
    display: none;
}

.profile-view.active {
    display: block;
}

.profile-cards {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}

.profile-card-wide {
    grid-column: 1 / -1;
}

.profile-card {
    padding: 18px;
}

.profile-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: white;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-card-head i {
    color: var(--primary-gold);
}

.profile-kv {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-kv-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.profile-kv-row span {
    color: var(--text-muted);
}

.profile-kv-row strong {
    color: white;
    font-weight: 600;
}

.profile-muted {
    color: var(--text-muted);
    line-height: 1.7;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-form-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 12px;
}

.profile-form-row label {
    color: var(--text-muted);
    font-weight: 650;
    font-size: 0.95rem;
}

.profile-form-row input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.22);
    color: var(--text-main);
    outline: none;
}

.profile-form-row input:focus {
    border-color: var(--glass-border);
    box-shadow: 0 0 12px var(--primary-gold-glow);
}

.profile-card-foot {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

@media (max-width: 1024px) {
    .profile-hero-inner {
        grid-template-columns: 110px 1fr;
    }
    .profile-side {
        justify-content: flex-start;
    }
    .profile-cards {
        grid-template-columns: 1fr;
    }
    .profile-form-row {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
}

.dashboard-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
    min-height: calc(100vh - 80px);
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: fit-content;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
}

.menu-item:hover, .menu-item.active {
    background: rgba(215, 38, 61, 0.1);
    color: var(--primary-gold);
}

.identifier-info {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.identifier-info h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.id-item {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    word-break: break-all;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.view-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.view-section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.char-card {
    padding: 20px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.char-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.char-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(215, 38, 61, 0.4);
}

.char-card:hover::before {
    opacity: 1;
}

.char-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.char-name {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.char-job {
    font-size: 0.85rem;
    color: var(--primary-gold);
    background: rgba(215, 38, 61, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

.char-status {
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 4px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--success-green);
}

.char-status.offline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.char-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #ccc;
}

.stat-mini i {
    color: var(--text-muted);
    width: 16px;
    text-align: center;
}

.char-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}


.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.col-span-2 {
    grid-column: span 2;
}

.detail-card {
    padding: 20px;
}

.detail-card h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.detail-card h3 i {
    color: var(--primary-gold);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.info-item span {
    color: var(--text-muted);
}

.info-item strong {
    color: white;
    font-weight: 500;
}

.economy-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box i {
    font-size: 2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-info .value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: white;
}


.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table th {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

.data-table td {
    font-size: 0.95rem;
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-garage { background: rgba(79, 172, 254, 0.1); color: #4facfe; }
.badge-out { background: rgba(255, 123, 0, 0.1); color: var(--accent-orange); }
.badge-impound { background: rgba(255, 51, 102, 0.1); color: var(--danger-red); }


.property-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.property-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.prop-icon {
    width: 40px;
    height: 40px;
    background: rgba(215, 38, 61, 0.1);
    color: var(--primary-gold);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.prop-details h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 5px;
}

.prop-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}


.map-integration {
    height: 300px;
    display: flex;
    flex-direction: column;
}

.mini-map-container {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 123, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0); }
}

@keyframes pulse-marker {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    z-index: 201;
    transition: background 0.3s ease;
}

.nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .nav-hamburger {
        display: flex;
        order: 3;
    }

    .nav-center {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(2, 5, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 200;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        padding: 80px 20px 40px;
    }

    .nav-center.mobile-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-center a {
        font-size: 1.2rem;
        padding: 14px 32px;
        border-radius: 12px;
        width: 100%;
        max-width: 320px;
        text-align: center;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-center a:hover,
    .nav-center a.active {
        background: rgba(215, 38, 61, 0.1);
    }

    .nav-center a.active::after {
        display: none;
    }

    .nav-right {
        order: 2;
    }

    .nav-right .username {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 100px;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-right {
        width: 100%;
        justify-content: center;
    }

    .dashboard-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        padding: 12px;
    }

    .sidebar-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .sidebar-menu .menu-item {
        padding: 10px 14px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .identifier-info {
        display: none;
    }

    .rules-layout {
        flex-direction: column;
    }

    .rules-sidebar {
        width: 100%;
        position: static;
    }

    .modal {
        max-width: calc(100vw - 40px);
        padding: 28px 20px;
    }

    .ddz-modal__panel {
        width: calc(100% - 24px);
        margin: 30px auto;
    }

    .ddz-search-modal.modal {
        max-width: calc(100vw - 32px);
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 4%;
    }

    .navbar.scrolled, .navbar.sticky {
        padding: 10px 4%;
    }

    .logo-img {
        height: 32px;
    }

    .main-title {
        font-size: 3rem;
    }

    .main-title .zrp {
        font-size: 3.5rem;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .col-span-2 {
        grid-column: span 1;
    }

    .rules-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .rules-search {
        width: 100%;
    }

    .dashboard-body {
        padding-top: 70px;
    }

    .profile-body {
        padding-top: 70px;
    }

    .rules-body {
        padding-top: 70px;
    }

    .faq-body {
        padding-top: 70px;
    }

    .basvuru-body {
        padding-top: 70px;
    }

    .placeholder-body {
        padding-top: 70px;
    }

    .section-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .character-grid {
        grid-template-columns: 1fr;
    }

    .hero2-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
    }

    .hero2-name-row {
        flex-wrap: wrap;
    }

    .hero2-name-row h1 {
        font-size: 1.5rem;
    }

    .hero2-avatar-wrap {
        width: 72px;
        height: 72px;
    }

    .content-tabs2 {
        grid-template-columns: 1fr;
    }

    .profile-container {
        padding: 12px;
    }

    .settings-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .penalties-summary {
        flex-direction: column;
    }

    .penalty-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .penalty-detail-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .penalty-detail-inline .penalty-detail-label {
        min-width: unset;
    }

    .basvuru-container {
        padding: 20px 12px;
    }

    .basvuru-header h1 {
        font-size: 1.8rem;
    }

    .rules-container {
        padding: 20px 12px;
    }

    .rules-title-area h1 {
        font-size: 1.8rem;
    }

    .faq-container {
        padding: 40px 12px 60px;
    }

    .faq-header h1 {
        font-size: 2rem;
    }

    .placeholder-card {
        padding: 24px 16px;
    }

    .placeholder-card h1 {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .step-navigator {
        flex-wrap: wrap;
    }

    .step-navigator .step {
        flex: 1 1 auto;
        min-width: 80px;
        font-size: 0.8rem;
        padding: 8px 4px;
    }

    .ddz-cropper {
        grid-template-columns: 1fr;
    }

    .stat-box {
        flex-direction: column;
        text-align: center;
    }

    .table-responsive {
        margin: 0 -12px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 3%;
    }

    .logo-img {
        height: 28px;
    }

    .nav-right .discord-login-btn span {
        display: none;
    }

    .nav-right .discord-login-btn {
        padding: 6px;
        border-radius: 50%;
    }

    .hero-content {
        margin-top: 80px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .main-title .zrp {
        font-size: 2.5rem;
    }

    .subtext {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ddz-footer {
        margin-top: 50px;
        padding-top: 40px;
    }

    .footer-content {
        padding: 0 16px;
    }

    .status-cards {
        grid-template-columns: 1fr;
    }

    .app-grid {
        grid-template-columns: 1fr;
    }

    .profile-tabs {
        grid-template-columns: 1fr;
    }

    .profile-form-row {
        grid-template-columns: 1fr;
    }

    .ddz-timeline-inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ddz-timeline-label {
        font-size: 0.72rem;
    }

    .ddz-timeline-label::after {
        width: 40px;
    }

    .admin-table th, .admin-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .property-list {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 24px 16px;
    }

    .ddz-modal__panel {
        width: calc(100% - 16px);
        margin: 16px auto;
    }

    .ddz-nav-popover {
        width: calc(100vw - 16px);
    }
}


.mobile-bottom-nav {
    display: flex;
    position: fixed !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(2, 5, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: rgba(138, 155, 176, 0.6);
    font-size: 0.65rem;
    font-weight: 500;
    padding: 6px 8px;
    border-radius: 10px;
    transition: color 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    min-width: 56px;
}

.bottom-nav-item i {
    font-size: 1.15rem;
    transition: transform 0.2s ease;
}

.bottom-nav-item.active {
    color: var(--primary-gold);
}

.bottom-nav-item.active i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(215, 38, 61, 0.4));
}

.bottom-nav-item:active {
    transform: scale(0.92);
}

@media (min-width: 1025px) {
    .mobile-bottom-nav {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .ddz-footer {
        padding-bottom: 80px;
    }

    body {
        padding-bottom: 70px;
    }
}

.ddz-login-gate {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 120px 20px 80px;
    position: relative;
    z-index: 1;
}

.ddz-login-gate-card {
    text-align: center;
    max-width: 440px;
    width: 100%;
    padding: 48px 36px;
    border-radius: 20px;
    background: rgba(8, 14, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ddz-login-gate-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(215, 38, 61, 0.08);
    border: 1px solid rgba(215, 38, 61, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-gold);
    animation: ddz-gatePulse 3s ease-in-out infinite;
}

@keyframes ddz-gatePulse {
    0%, 100% { border-color: rgba(215, 38, 61, 0.2); box-shadow: 0 0 0 0 rgba(215, 38, 61, 0); }
    50% { border-color: rgba(215, 38, 61, 0.45); box-shadow: 0 0 20px rgba(215, 38, 61, 0.1); }
}

.ddz-login-gate-card h1 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 12px;
}

.ddz-login-gate-card p {
    color: rgba(138, 155, 176, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.ddz-login-gate-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.ddz-login-gate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.45);
    background: linear-gradient(135deg, #6974f5 0%, #5865F2 100%);
}

.ddz-login-gate-btn i {
    font-size: 1.15rem;
}

.ddz-login-gate-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    color: rgba(138, 155, 176, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ddz-login-gate-back:hover {
    color: #fff;
}

@media (max-width: 480px) {
    .ddz-login-gate-card {
        padding: 36px 24px;
    }
    .ddz-login-gate-card h1 {
        font-size: 1.6rem;
    }
    .ddz-login-gate-btn {
        width: 100%;
        justify-content: center;
    }
}

.rules-body {
    padding-top: 80px;
}


.faq-body {
    padding-top: 80px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    min-height: calc(100vh - 80px);
}

.faq-header {
    text-align: center;
    margin-bottom: 34px;
}

.faq-header h1 {
    font-size: 3rem;
    letter-spacing: 1px;
}

.faq-underline {
    width: 110px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(215, 38, 61, 0.95), transparent);
    box-shadow: 0 0 14px rgba(215, 38, 61, 0.22);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    cursor: pointer;
    text-align: left;
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(215, 38, 61, 0.22);
}

.faq-q:focus-visible {
    outline: 2px solid rgba(215, 38, 61, 0.5);
    outline-offset: 2px;
}

.faq-num {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary-gold);
    border: 1px solid rgba(215, 38, 61, 0.28);
    background: rgba(215, 38, 61, 0.08);
    flex: 0 0 auto;
}

.faq-q-text {
    color: rgba(215, 38, 61, 0.92);
    font-weight: 650;
    font-size: 1.05rem;
    line-height: 1.35;
}

.faq-icon {
    margin-left: auto;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(215, 38, 61, 0.85);
}

.faq-icon i {
    transition: transform 260ms ease;
}

.faq-item.open .faq-icon i {
    transform: rotate(180deg);
}

.faq-a {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease, transform 220ms ease;
    will-change: max-height;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.14);
}

.faq-item.open .faq-a {
    opacity: 1;
    transform: translateY(0);
}

.faq-a-inner {
    padding: 0 18px 18px;
    color: var(--text-main);
    line-height: 1.65;
    font-size: 0.98rem;
}

@media (max-width: 768px) {
    .faq-header h1 { font-size: 2.2rem; }
    .faq-q { padding: 14px; }
    .faq-q-text { font-size: 1rem; }
    .faq-num { width: 28px; height: 28px; font-size: 0.85rem; }
    .faq-icon { width: 32px; height: 32px; }
}

.rules-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 80px);
}

.rules-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.rules-title-area h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.rules-title-area p {
    color: var(--text-muted);
    font-size: 1rem;
}

.rules-search {
    position: relative;
    width: 350px;
}

.rules-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.rules-search input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.3s;
}

.rules-search input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(215, 38, 61, 0.2);
}

.rules-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.rules-sidebar {
    width: 300px;
    flex-shrink: 0;
    padding: 20px;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-item {
    margin-bottom: 5px;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header.active {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
    width: 15px;
}

.accordion-header.active .accordion-icon {
    transform: rotate(90deg);
}

.cat-number {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.accordion-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 15px;
    margin-top: 6px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease, transform 220ms ease;
    will-change: max-height;
    pointer-events: none;
}

.accordion-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.subcat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 250ms ease, color 250ms ease, transform 260ms ease, opacity 260ms ease;
    text-align: left;
    width: 100%;

    
    opacity: 0;
    transform: translateY(-6px);
}

.subcat-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.accordion-content.active .subcat-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i, 0) * 55ms);
}

.subcat-btn.active {
    background: rgba(215, 38, 61, 0.1);
    color: var(--primary-gold);
    font-weight: 600;
}

.subcat-btn.active .cat-number {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.subcat-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
}

.subcat-btn.active .subcat-dot {
    background: var(--primary-gold);
    box-shadow: 0 0 5px var(--primary-gold);
}

.rules-content {
    flex: 1;
}

.content-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-header h2 {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.rules-list.ddz-swap {
    will-change: opacity, transform;
    transition: opacity 180ms ease, transform 180ms ease;
}

.rules-list.ddz-swap.ddz-swap-out {
    opacity: 0;
    transform: translateY(10px);
}

.content-header h2.ddz-swap {
    will-change: opacity, transform;
    transition: opacity 160ms ease, transform 160ms ease;
}

.content-header h2.ddz-swap.ddz-swap-out {
    opacity: 0;
    transform: translateY(6px);
}


.rules-list.subcat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 900px) {
    .rules-list.subcat-grid {
        grid-template-columns: 1fr;
    }
}

.subcat-card {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.25);
    padding: 22px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.subcat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(215, 38, 61, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.subcat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(215, 38, 61, 0.75);
}

.subcat-card-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.subcat-card-title {
    font-weight: 650;
    color: rgba(215, 38, 61, 0.92);
    font-size: 1.05rem;
}

.subcat-card-num {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.rules-back {
    align-self: flex-start;
}

.rule-section {
    padding: 18px;
}

.rule-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rule-li {
    padding: 14px 14px 14px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.18);
}

.rule-li-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.rule-li-id {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(215, 38, 61, 0.1);
    border: 1px solid rgba(215, 38, 61, 0.22);
    color: var(--primary-gold);
    font-weight: 750;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.rule-li-body {
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.95rem;
}

.rule-li-penalty {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    color: var(--danger-red);
    font-size: 0.9rem;
    font-weight: 650;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rule-card {
    padding: 25px;
    transition: transform 0.2s;
}

.rule-card:hover {
    transform: translateX(5px);
    border-color: rgba(215, 38, 61, 0.3);
}

.rule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.rule-id {
    background: rgba(215, 38, 61, 0.1);
    color: var(--primary-gold);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.rule-body p {
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.95rem;
}

.rule-penalty {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--danger-red);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rule-group-header {
    color: white;
    margin: 20px 0 10px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.no-results {
    text-align: center;
    padding: 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
}


body.ddz-anim .hero-content,
body.ddz-anim .dashboard-container,
body.ddz-anim .rules-container,
body.ddz-anim .faq-container,
body.ddz-anim .placeholder-container {
    opacity: 0;
    transform: translateY(10px);
}

body.ddz-anim.ddz-anim-ready .hero-content,
body.ddz-anim.ddz-anim-ready .dashboard-container,
body.ddz-anim.ddz-anim-ready .rules-container,
body.ddz-anim.ddz-anim-ready .faq-container,
body.ddz-anim.ddz-anim-ready .placeholder-container {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}


@keyframes ddzFadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.rule-card.ddz-appear,
.rule-group-header.ddz-appear,
.faq-item.ddz-appear {
    animation: ddzFadeSlideIn 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: var(--delay, 0ms);
}


.rule-card {
    cursor: pointer;
}

.rule-card:focus-visible {
    outline: 2px solid rgba(215, 38, 61, 0.5);
    outline-offset: 2px;
}

.rule-header {
    gap: 12px;
}

.rule-expand {
    margin-left: auto;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    transition: background 250ms ease, color 250ms ease, border-color 250ms ease;
}

.rule-card:hover .rule-expand {
    color: white;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.rule-expand i {
    transition: transform 260ms ease;
}

.rule-card.expanded .rule-expand i {
    transform: rotate(180deg);
}

.rule-preview {
    margin-top: 12px;
}

.rule-preview p {
    margin: 0;
    color: var(--text-main);
    line-height: 1.55;
    font-size: 0.95rem;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.95;
}

.rule-card.expanded .rule-preview {
    display: none;
}

.rule-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 380ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
    will-change: max-height;
}

.rule-card.expanded .rule-content {
    opacity: 1;
}

.rule-content-inner {
    padding-top: 10px;
}


@media (prefers-reduced-motion: reduce) {
    body.ddz-anim .hero-content,
    body.ddz-anim .dashboard-container,
    body.ddz-anim .rules-container,
    body.ddz-anim .faq-container,
    body.ddz-anim .placeholder-container {
        opacity: 1;
        transform: none;
    }

    body.ddz-anim.ddz-anim-ready .hero-content,
    body.ddz-anim.ddz-anim-ready .dashboard-container,
    body.ddz-anim.ddz-anim-ready .rules-container,
    body.ddz-anim.ddz-anim-ready .faq-container,
    body.ddz-anim.ddz-anim-ready .placeholder-container {
        transition: none;
    }

    .rule-content {
        transition: none;
    }

    .rule-card.ddz-appear,
    .rule-group-header.ddz-appear,
    .faq-item.ddz-appear {
        animation: none;
    }

    .rules-list.ddz-swap,
    .content-header h2.ddz-swap {
        transition: none;
    }
}


.placeholder-body {
    padding-top: 80px;
}

.placeholder-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 20px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-card {
    width: 100%;
    max-width: 720px;
    padding: 34px 26px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.placeholder-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--primary-gold);
}

.placeholder-card h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.placeholder-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.placeholder-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


.ddz-timeline {
    position: relative;
    width: 100%;
    padding: 24px 5%;
    margin-top: -10px;
}

.ddz-timeline-inner {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 22px;
    padding: 18px 0;
    background: transparent;
}

.ddz-timeline-label {
    color: rgba(138, 155, 176, 0.9);
    font-weight: 750;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 4px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 44px;
    line-height: 1;
}

.ddz-timeline-label::after {
    content: '';
    display: inline-block;
    height: 1px;
    width: 72px;
    background: linear-gradient(90deg, rgba(215, 38, 61, 0.55), rgba(215, 38, 61, 0.05));
}

.ddz-timeline-viewport {
    position: relative;
    overflow: hidden;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.ddz-timeline-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    transform: translateX(0);
}

.ddz-timeline-group {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.ddz-timeline-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ddz-timeline-text {
    color: rgba(210, 220, 235, 0.95);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1;
}

.ddz-timeline-text::after {
    content: ' -';
    color: rgba(210, 220, 235, 0.8);
    font-weight: 650;
}

.ddz-timeline-year {
    color: rgba(215, 38, 61, 0.95);
    font-weight: 850;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 14px rgba(215, 38, 61, 0.18);
    line-height: 1;
}

.ddz-timeline-sep {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, rgba(215, 38, 61, 0.0), rgba(215, 38, 61, 0.55), rgba(215, 38, 61, 0.0));
    opacity: 0.8;
}

.ddz-timeline-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


@media (max-width: 900px) {
    .ddz-timeline-inner {
        grid-template-columns: 96px 1fr;
        gap: 14px;
    }
    .ddz-timeline-text { font-size: 0.95rem; }
    .ddz-timeline-year { font-size: 1.22rem; }
}

@media (prefers-reduced-motion: reduce) {
    .ddz-timeline-viewport {
        overflow-x: auto;
        scrollbar-width: thin;
    }
}


.basvuru-body {
    padding-top: 80px;
}

.basvuru-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: calc(100vh - 80px);
}

.basvuru-header {
    margin-bottom: 40px;
}

.basvuru-header h1 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.basvuru-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.basvuru-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.basvuru-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.basvuru-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.status-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.status-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.status-card.danger {
    background: rgba(215, 38, 61, 0.05);
    border-color: rgba(215, 38, 61, 0.2);
}

.status-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.status-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.status-value.text-danger {
    color: var(--danger-red);
}

.section-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-divider::before, .section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-divider span {
    padding: 0 20px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.app-card {
    background: rgba(10, 18, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    transition: transform 0.3s, border-color 0.3s;
}

.app-card:hover {
    transform: translateY(-3px);
    border-color: rgba(215, 38, 61, 0.3);
}

.app-card h3 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.app-alert {
    background: rgba(215, 38, 61, 0.1);
    border: 1px solid rgba(215, 38, 61, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-alert i {
    color: var(--danger-red);
}

.app-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
    display: block;
}

.app-btn:hover {
    background: rgba(215, 38, 61, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.sidebar-title {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.past-app-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.past-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.past-app-title {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.past-app-id {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.past-app-status {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-dot.red { background: var(--danger-red); box-shadow: 0 0 5px var(--danger-red); }
.status-dot.green { background: var(--success-green); box-shadow: 0 0 5px var(--success-green); }

@media (max-width: 1024px) {
    .basvuru-layout {
        flex-direction: column;
    }
    .basvuru-sidebar {
        width: 100%;
    }
    .status-cards {
        grid-template-columns: 1fr;
    }
    .app-grid {
        grid-template-columns: 1fr;
    }
}

.profile-avatar-edit {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--primary-gold);
    text-align: center;
    cursor: pointer;
    text-decoration: underline;
}

.profile-banner {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
    object-fit: cover;
    object-position: center;
    display: none;
}
.profile-banner.active {
    display: block;
}



.profile-hero2 {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(10, 18, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.profile-hero2 .profile-banner {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    border-radius: 0;
    margin: 0;
    display: block;
}
.hero2-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 70%;
    background: linear-gradient(to top, rgb(5, 10, 18), transparent);
    z-index: 1;
}
.hero2-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.hero2-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero2-avatar-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    padding: 3px;
    background: rgba(10, 18, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero2-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 13px;
    object-fit: cover;
}
.hero2-status {
    position: absolute;
    bottom: -2px; right: -2px;
    width: 16px; height: 16px;
    background: var(--success-green);
    border-radius: 50%;
    border: 3px solid #050a12;
}
.hero2-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero2-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero2-name-row h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}
.hero2-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 600;
}
.hero2-pill.role {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.3);
    color: #8da4ff;
}
.hero2-sub-info {
    color: #8a9bb0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero2-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}
.hero2-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.hero2-btn:hover {
    background: var(--primary-gold);
    color: black;
}

.profile-main-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 25px;
    align-items: start;
}
@media(max-width: 1024px) {
    .profile-main-grid {
        grid-template-columns: 1fr;
    }
}

.sidebar-block {
    padding: 24px;
}
.sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0d1522;
    padding: 16px;
}
.info-icon {
    width: 36px; height: 36px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.info-text label {
    font-size: 0.75rem;
    color: #8a9bb0;
}
.info-text span {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
    word-break: break-all;
}
.info-lock {
    color: #4a5568;
    font-size: 0.85rem;
}

.content-tabs2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}
.content-tabs2 button {
    background: #0d1522;
    color: #8a9bb0;
    border: none;
    padding: 16px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.content-tabs2 button:hover {
    background: rgba(255, 255, 255, 0.02);
    color: white;
}
.content-tabs2 button.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.empty-state2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    background: rgba(10, 18, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}
.empty-state2 h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.empty-state2 p {
    color: #8a9bb0;
    font-size: 0.9rem;
}


.penalties-summary {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.penalty-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-radius: 14px;
    background: rgba(10, 18, 30, 0.7);
    border: 1px solid rgba(255, 51, 102, 0.15);
    min-width: 180px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.penalty-stat-card:hover {
    border-color: rgba(255, 51, 102, 0.3);
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.08);
}
.penalty-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 51, 102, 0.08);
    border: 1px solid rgba(255, 51, 102, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.penalty-stat-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.penalty-stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.penalty-stat-label {
    font-size: 0.72rem;
    color: rgba(138, 155, 176, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.penalties-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.penalty-card {
    background: rgba(10, 18, 30, 0.65);
    border: 1px solid rgba(255, 51, 102, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}
.penalty-card:hover {
    border-color: rgba(255, 51, 102, 0.22);
    box-shadow: 0 6px 24px rgba(255, 51, 102, 0.06);
    transform: translateY(-1px);
}


.penalty-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.04) 0%, transparent 60%);
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}
.penalty-card-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--danger-red) 0%, rgba(255,51,102,0.2) 100%);
    border-radius: 0 4px 4px 0;
}
.penalty-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.penalty-card-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.penalty-rule-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.22);
    color: var(--danger-red);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.penalty-rule-badge i {
    font-size: 0.75rem;
    opacity: 0.8;
}
.penalty-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(107, 122, 141, 0.85);
    font-weight: 500;
}
.penalty-date i {
    font-size: 0.72rem;
}
.penalty-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(255, 123, 0, 0.08);
    border: 1px solid rgba(255, 123, 0, 0.18);
    color: var(--accent-orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.penalty-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.penalty-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.penalty-detail-label {
    font-size: 0.68rem;
    color: rgba(138, 155, 176, 0.75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}
.penalty-detail p {
    font-size: 0.88rem;
    color: rgba(224, 230, 237, 0.88);
    line-height: 1.65;
    margin: 0;
}
.penalty-detail-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.84rem;
    padding: 0 4px;
}
.penalty-detail-inline .penalty-detail-label {
    min-width: 100px;
    flex-shrink: 0;
}
.penalty-detail-inline span:last-child {
    color: rgba(224, 230, 237, 0.8);
    font-weight: 500;
}


[data-profile-view="penalties"] .empty-state2 {
    padding: 100px 30px;
    border: 1px dashed rgba(255, 51, 102, 0.12);
    background: rgba(10, 18, 30, 0.4);
    border-radius: 16px;
}
[data-profile-view="penalties"] .empty-state2 h3 {
    color: var(--success-green);
    display: flex;
    align-items: center;
    gap: 10px;
}
[data-profile-view="penalties"] .empty-state2 h3::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .penalty-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .penalties-summary {
        flex-direction: column;
    }
    .penalty-detail-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .penalty-detail-inline .penalty-detail-label {
        min-width: unset;
    }
}


.settings-header-title {
    color: #8a9bb0;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}
.settings-section {
    background: rgba(10, 18, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}
.settings-section-title {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.settings-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}
.settings-item {
    background: #0d1522;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.settings-item-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.settings-item-icon {
    width: 36px; height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #8a9bb0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.settings-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.settings-item-title {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}
.settings-item-desc {
    color: #8a9bb0;
    font-size: 0.8rem;
}
.settings-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a9bb0;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.settings-badge.success {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: var(--success-green);
}
.settings-badge.danger {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.3);
    color: #ff4444;
}
.settings-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a9bb0;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}
.settings-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}
.settings-btn.danger {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.3);
    color: #ff4444;
}
.settings-btn.danger:hover {
    background: rgba(255, 68, 68, 0.2);
}

.settings-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}
.settings-toggle::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px;
    width: 20px; height: 20px;
    background: #8a9bb0;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.settings-toggle.active {
    background: rgba(212, 175, 55, 0.3);
}
.settings-toggle.active::after {
    left: calc(100% - 22px);
    background: var(--primary-gold);
}

.settings-sub-title {
    padding: 16px 20px 8px;
    background: #0d1522;
    color: #8a9bb0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Inline editable settings items */
.settings-item--editable {
    gap: 12px;
}
.settings-item--editable .settings-item-left {
    flex-shrink: 0;
    min-width: 160px;
}
.settings-inline-input {
    flex: 1;
    max-width: 280px;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
    color: #e0e6ed;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.settings-inline-input::placeholder {
    color: #4a5568;
}
.settings-inline-input:hover {
    border-color: rgba(255, 255, 255, 0.15);
}
.settings-inline-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.settings-inline-input[type="date"] {
    color-scheme: dark;
}

.settings-avatar-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: #0d1522;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.settings-avatar-wrap img {
    width: 60px; height: 60px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.settings-avatar-info {
    display: flex;
    flex-direction: column;
}
.settings-avatar-info h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}
.settings-avatar-info span {
    color: #8a9bb0;
    font-size: 0.85rem;
}

.settings-save-btn {
    width: 100%;
    background: var(--primary-gold);
    color: black;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.settings-save-btn:hover {
    background: #e6c240;
}
.settings-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: #8a9bb0;
    font-size: 0.85rem;
}
.settings-info-box i {
    color: var(--primary-gold);
}


.ddz-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}
.ddz-modal.ddz-modal--open {
    display: block;
}
.ddz-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
.ddz-modal__panel {
    position: relative;
    z-index: 2;
    width: min(960px, calc(100% - 40px));
    margin: 60px auto;
    border-radius: 16px;
    overflow: hidden;
}
.ddz-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ddz-modal__title {
    font-weight: 700;
    color: var(--primary-gold);
}
.ddz-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #8a9bb0;
    cursor: pointer;
}
.ddz-modal__close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}
.ddz-modal__body {
    padding: 20px;
}
.ddz-modal__foot {
    padding: 18px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ddz-cropper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    align-items: start;
}
@media (max-width: 860px) {
    .ddz-cropper {
        grid-template-columns: 1fr;
    }
}

.ddz-cropper__frame {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    max-height: 260px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
}
.ddz-cropper__frame.ddz-cropper__frame--avatar {
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 320px;
    max-width: 320px;
    justify-self: start;
}
.ddz-cropper__frame img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    will-change: transform;
    user-select: none;
    pointer-events: none;
}

.ddz-cropper__controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ddz-control {
    background: #0d1522;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px;
}
.ddz-control label {
    display: block;
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}
.ddz-control input[type="file"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    color: #8a9bb0;
}
.ddz-control input[type="range"] {
    width: 100%;
}
.ddz-help {
    display: block;
    margin-top: 8px;
    color: #8a9bb0;
    font-size: 0.78rem;
}


.step-navigator {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}
.step-navigator .step {
    flex: 1;
    text-align: center;
    padding: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    cursor: default;
    transition: all 0.3s ease;
}
.step-navigator .step.active {
    color: var(--primary-gold);
}
.step-navigator .step.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
    box-shadow: 0 0 10px var(--primary-gold);
}
.b-form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.b-form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.5;
}
.b-form-group textarea {
    width: 100%;
    min-height: 120px;
    background: rgba(10, 18, 30, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-family: inherit;
    resize: vertical;
    transition: 0.3s;
}
.b-form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}
.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(10, 18, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
}
.radio-label:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}
.radio-label input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--primary-gold);
}


.ddz-footer {
    position: relative;
    margin-top: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 5, 10, 0.95) 15%, #02050a 100%);
    padding-top: 60px;
    z-index: 10;
}
.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    box-shadow: 0 0 40px 8px rgba(215, 38, 61, 0.15);
}
.footer-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(215, 38, 61, 0.12) 30%, rgba(215, 38, 61, 0.2) 50%, rgba(215, 38, 61, 0.12) 70%, transparent 95%);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-logo-link {
    display: inline-block;
    width: fit-content;
}
.footer-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}
.footer-logo-img:hover {
    filter: brightness(1.1);
}
.footer-tagline {
    color: rgba(138, 155, 176, 0.7);
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    line-height: 1.6;
    max-width: 260px;
}
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(138, 155, 176, 0.6);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.footer-socials a:hover {
    background: rgba(215, 38, 61, 0.08);
    border-color: rgba(215, 38, 61, 0.25);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 2px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul li a {
    color: rgba(138, 155, 176, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-col ul li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(215, 38, 61, 0.35);
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.footer-col ul li a:hover::before {
    background: var(--primary-gold);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-green);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
    animation: footerPulse 2s ease-in-out infinite;
}
@keyframes footerPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 136, 0.4); }
    50% { box-shadow: 0 0 16px rgba(0, 255, 136, 0.6); }
}
.footer-status span {
    color: rgba(224, 230, 237, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}
.footer-server-ip {
    color: rgba(138, 155, 176, 0.5);
    font-size: 0.8rem;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
    color: rgba(138, 155, 176, 0.4);
}
.footer-credit {
    display: flex;
    align-items: center;
    gap: 4px;
}



