body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #06050a;
    color: #fafafa;
    overflow-x: hidden;
}

nav {
    height: 5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    top: 10px;
    width: 90%;
    height: 4.5rem;
    background: rgba(10, 9, 18, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(139, 92, 246, 0.2);
    border-radius: 1.5rem;
}

.hero-title {
    letter-spacing: 0.05em;
    line-height: 1.1;
    font-style: normal !important;
}

.net-underline {
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    animation: shine 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes shine {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.glass-card {
    background: rgba(15, 12, 30, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

#auth-page-wrapper {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: none;
    transition: opacity 0.5s ease-in-out;
    z-index: 9999;
    background: rgba(6, 5, 10, 0.8);
    backdrop-filter: blur(10px);
}

#auth-slider {
    display: flex;
    width: 200vw;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.auth-slide {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.premium-auth-container {
    background: rgba(12, 10, 25, 0.92);
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(25px);
    display: flex;
    overflow: hidden;
    border-radius: 2.5rem;
    max-width: 950px;
    width: 90%;
    min-height: 580px;
}

.auth-side-brand {
    background: linear-gradient(225deg, #4c1d95 0%, #1e1b4b 100%);
    width: 42%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

@media (min-width: 768px) {
    .auth-side-brand {
        display: flex;
    }
}

.auth-input,
.support-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 92, 246, 0.1);
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    transition: all 0.3s ease;
    width: 100%;
    color: white;
}

.auth-input:focus,
.support-input:focus {
    background: rgba(139, 92, 246, 0.05);
    border-color: #a78bfa;
    outline: none;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.support-input option {
    background-color: #0e0c1d;
    color: white;
}

.custom-checkbox {
    position: relative;
    width: 1.4rem;
    height: 1.4rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

input:checked+.custom-checkbox {
    background: #7c3aed;
    border-color: #7c3aed;
}

.custom-checkbox i {
    font-size: 0.75rem;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s ease-in-out, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input:checked+.custom-checkbox i {
    opacity: 1;
    transform: scale(1);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.group:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#toast {
    visibility: hidden;
    min-width: 250px;
    background: rgba(124, 58, 237, 0.95);
    backdrop-filter: blur(8px);
    color: #fff;
    text-align: center;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%);
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#toast.show {
    visibility: visible;
    bottom: 30px;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% -10%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(139, 92, 246, 0.03) 0%, transparent 40%);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1.25rem;
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #06050a;
}

::-webkit-scrollbar-thumb {
    background: #4c1d95;
    border-radius: 10px;
}

#shop-page,
#support-page,
#wiki-page {
    display: none;
}

#cezalar-page .shop-step {
    padding: 30px 15px;
    box-sizing: border-box;
}

.ceza-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    font-size: 32px;
    transition: all 0.3s ease;
}

.glass-card:hover .ceza-icon-box {
    background: #8b5cf6;
    color: white;
    transform: scale(1.1)
}

.shop-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.shop-slider-container {
    display: flex;
    width: 300%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-step {
    width: 33.3333%;
    flex-shrink: 0;
    transition: opacity 0.4s ease;
    box-sizing: border-box;
}

.hidden-step-opacity {
    opacity: 0;
    pointer-events: none;
}

.active-step-opacity {
    opacity: 1;
    pointer-events: auto;
}

.step-indicator.active {
    background: #7c3aed;
    width: 40px;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238b5cf6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'%3E%3Cpath%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.8em;
}

.support-table-container::-webkit-scrollbar {
    height: 4px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-pane {
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    visibility: hidden;
}

.pane-visible {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
    visibility: visible;
}

#nav-indicator {
    will-change: width, left, top, height, opacity;
    pointer-events: none;
}

.penalty-tab {
    transition: all 0.3s ease;
}

.penalty-tab.active {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5) !important;
    color: white !important;
}

.penalty-tab:not(.active):hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.disabled-hover:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Settings Dashboard Refinements */
.settings-tab-btn {
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.settings-tab-btn:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(139, 92, 246, 0.2);
}

.settings-tab-btn.active {
    background: rgba(139, 92, 246, 0.03) !important;
    border-color: rgba(139, 92, 246, 0.2) !important;
}

.settings-content {
    /* display managed by hidden/block classes from JS */
    transition: opacity 0.2s ease;
}

.settings-content.hidden {
    display: none !important;
}

.stat-card-glow {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sleeker Form Inputs */
input[type="text"],
input[type="email"],
input[type="password"] {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

input:focus {
    background: rgba(139, 92, 246, 0.03) !important;
    border-color: rgba(139, 92, 246, 0.4) !important;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.05) !important;
}

/* Glass effect for inner cards */
.inner-glass {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

#orders-list-detailed tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

#orders-list-detailed tr:hover {
    background: rgba(255, 255, 255, 0.01);
}