@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {

    --primary: #ff0000;
    --primary-dark: #b30000;
    --primary-glow: rgba(255, 0, 0, 0.4);


    --bg-main: #09090b;
    --bg-secondary: #0c0c0e;
    --surface-1: #18181b;
    --surface-2: #27272a;
    --surface-hover: #3f3f46;


    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #52525b;


    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    scrollbar-width: thin;
    scrollbar-color: rgba(39, 39, 42, 0.5) transparent;
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(39, 39, 42, 0.5);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(82, 82, 91, 0.8);
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    min-height: 100vh;
    background: #09090b;
    background-image:
        radial-gradient(circle at 20% 0%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(220, 38, 38, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
    overflow-x: hidden;
}


.navbar {
    position: sticky;
    top: 20px;
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    padding: 0.8rem 2rem;

    border-radius: 99px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 1000;

    letter-spacing: -0.05em;
    background: transparent !important;
    border: none !important;
    padding: 0;
    margin: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-font-smoothing: antialiased;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    background: linear-gradient(180deg, #ffffff 10%, #fca5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 2px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-1);
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    border: 1px solid var(--border-subtle);
    transition: all 0.2s ease;
}

.user-pill:hover {
    border-color: var(--border-highlight);
    background: var(--surface-2);
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--surface-2);
}

.logout-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-btn:hover {
    background: var(--surface-2);
    color: var(--primary);
    border-color: var(--border-subtle);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
}

.header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.header p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}


.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 60px 0 32px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.section-title i {
    color: var(--primary);
    background: rgba(220, 38, 38, 0.1);
    padding: 8px;
    border-radius: 8px;
    font-size: 1rem;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-highlight);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}


.card {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    background: var(--surface-1);

    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.guild-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;

    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.card:hover .guild-icon {
    transform: scale(1.05);
}

.guild-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guild-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.member-badge {
    background: var(--surface-2);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border-subtle);
}

.card-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}


.btn {
    padding: 12px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    width: auto;
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #fca5a5 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 165, 165, 0.2);
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 165, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


.loader {
    color: var(--text-secondary);
    font-size: 1rem;
    grid-column: 1/-1;
    text-align: center;
    padding: 64px;
    background: var(--surface-1);
    border-radius: 24px;
    border: 1px dashed var(--border-subtle);
}

.loader i {
    color: var(--primary);
    margin-right: 8px;
}


@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .navbar {
        width: 100%;
        border-radius: 0;
        top: 0;
        border-width: 0 0 1px 0;
        padding: 0.8rem 1rem;
        /* Reduced padding */
    }

    .nav-actions {
        gap: 8px;
        /* Reduced gap */
    }

    .nav-btn {
        padding: 8px 12px;
        /* Smaller buttons */
        font-size: 0.85rem;
    }

    .nav-btn .discord-icon {
        width: 16px;
        height: auto;
    }

    .nav-btn svg {
        width: 16px;
        height: 16px;
    }
}


.hero {
    position: relative;
    padding: 140px 20px 80px;
    text-align: center;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(4px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(248, 113, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(248, 113, 113, 0);
    }
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #fff 20%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;

}

.hero-description {
    font-size: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


.hero-decoration {
    display: none;
}


.discord-icon,
.discord-icon-small {
    width: 20px;
    height: auto;
}


.nav-actions {
    display: flex;
    gap: 12px;
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Outfit', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 0.95rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

#loginBtn {
    background: #5865F2;
    border-color: #5865F2;
    color: white;
}

#loginBtn:hover {
    background: #4752c4;
    border-color: #4752c4;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.dashboard-btn {
    background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
}


.user-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-1);
    padding: 6px 20px 6px 6px;
    border-radius: 50px;
    border: 1px solid var(--border-subtle);
    transition: all 0.2s ease;
    margin-top: 20px;
}

.user-card:hover {
    border-color: var(--primary);
    background: var(--surface-2);
}

.user-card-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--surface-2);
    object-fit: cover;
}

.user-card-info {
    display: flex;
    flex-direction: column;
}

.user-card-name {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.user-card-status {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 500;
}

.user-card-logout {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: all 0.2s;
}




.stats-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(248, 113, 113, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


.features {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(248, 113, 113, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(248, 113, 113, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}


.how-it-works {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(248, 113, 113, 0.4);
    z-index: 2;
}

.step-icon {
    margin: 40px auto 24px;
    width: 80px;
    height: 80px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(248, 113, 113, 0.2);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0 auto;
}


.modules-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.module-card {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(248, 113, 113, 0.15);
}

.ticket-type-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-subtle) !important;
    padding: 24px !important;
    border-radius: 20px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ticket-type-card:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: var(--border-highlight) !important;
    transform: translateX(8px);
}

.ticket-input-label,
.ticket-input-emoji {
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 14px !important;
    color: var(--text-primary) !important;
    padding: 12px 16px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    backdrop-filter: blur(5px) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.ticket-input-label::placeholder,
.ticket-input-emoji::placeholder {
    color: var(--text-tertiary) !important;
    opacity: 0.6 !important;
}

.ticket-input-label:focus,
.ticket-input-emoji:focus {
    border-color: var(--primary) !important;
    background: rgba(0, 0, 0, 0.35) !important;
    box-shadow: 0 0 0 4px var(--primary-glow), inset 0 2px 4px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px) !important;
    outline: none !important;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--primary);
}

.module-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.module-features {
    list-style: none;
}

.module-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.module-features li:last-child {
    border-bottom: none;
}

.module-features li:before {
    content: "âœ“";
    color: var(--primary);
    font-weight: bold;
}


.testimonials {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 32px;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}


.cta-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content {
    background: linear-gradient(145deg, rgba(20, 20, 23, 0.95) 0%, rgba(9, 9, 11, 1) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 32px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.1), inset 0 0 20px rgba(255, 0, 0, 0.05);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #fff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.btn-large {
    padding: 12px 24px;
    font-size: 1rem;
    min-width: max-content;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}


.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 80px 20px 40px;
    margin-top: 60px;
    background: var(--bg-secondary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 32px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--primary);
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.star-rating {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
    flex-direction: row-reverse;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label,
.star-rating input:checked~label~label {
    color: #ffd700;
}

.form-control {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}



.delete-review-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: none;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}



.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification.success {
    border-left-color: #22c55e;
}

.toast-notification.error {
    border-left-color: #ef4444;
}



.custom-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.custom-confirm-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.custom-confirm-box {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    padding: 32px;
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.custom-confirm-overlay.active .custom-confirm-box {
    transform: scale(1) translateY(0);
}

.custom-confirm-icon {
    width: 64px;
    height: 64px;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.custom-confirm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.custom-confirm-msg {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.custom-confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
    flex: 1;
}

.confirm-btn-cancel {
    background: var(--surface-2);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.confirm-btn-cancel:hover {
    background: var(--surface-hover);
}

.confirm-btn-danger {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.confirm-btn-danger:hover {
    background: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}


.faq-section {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-highlight);
    background: var(--surface-2);
}

.faq-item[open] {
    border-color: var(--primary);
    background: var(--surface-1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    border-top: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-item[open] .faq-answer {
    border-top-color: var(--border-subtle);
    padding-top: 16px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.suggestion-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.suggestion-content {
    background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 60px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.suggestion-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-highlight), transparent);
}

.suggestion-text {
    max-width: 600px;
    z-index: 1;
}

.suggestion-action {
    z-index: 1;
}

.suggestion-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .suggestion-content {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .suggestion-text {
        margin-bottom: 20px;
    }

    .suggestion-text .section-title,
    .suggestion-text .section-subtitle {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
}


.suggestion-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.suggestion-content {
    background: radial-gradient(circle at top right, rgba(50, 50, 55, 0.4), rgba(24, 24, 27, 0.95)) !important;
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 60px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px);
}

.suggestion-content::before {
    background: linear-gradient(90deg, transparent, var(--primary), transparent) !important;
    opacity: 0.5;
}

.suggestion-text {
    z-index: 2;
}

.suggestion-action {
    z-index: 2;
}

.suggestion-content::after {
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    filter: blur(180px);
    opacity: 0.08;
}



.file-upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px;
    background: var(--surface-2);
    border: 2px dashed var(--border-highlight);
    border-radius: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.file-label:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.file-label svg {
    width: 32px;
    height: 32px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.file-label:hover svg {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.1);
}

.file-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    white-space: pre-wrap;

    word-break: break-all;
    max-width: 100%;
    margin-top: 5px;
}


.file-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: transform 0.2s;
    cursor: zoom-in;
}

.file-preview-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.6);
    color: #ff4444;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 5;
}

.file-preview-item:hover .file-remove-btn {
    opacity: 1;
}

.file-remove-btn:hover {
    background: #ff4444;
    color: white;
}


.image-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
}

.image-modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}



.suggestion-section {
    padding: 120px 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
}

.suggestion-content {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8) 0%, rgba(12, 12, 14, 0.95) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 32px !important;
    padding: 80px 60px !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 60px !important;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
}

.suggestion-content:hover {
    border-color: rgba(255, 0, 0, 0.3) !important;
    transform: translateY(-5px) !important;
}

.suggestion-content::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at 100% 0%, rgba(255, 0, 0, 0.15), transparent 50%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.suggestion-content::after {
    content: '' !important;
    position: absolute !important;
    width: 400px !important;
    height: 400px !important;
    background: #ff0000 !important;

    background: var(--primary) !important;
    filter: blur(120px) !important;
    opacity: 0.12 !important;
    border-radius: 50% !important;
    bottom: -150px !important;
    left: -100px !important;
    z-index: 0 !important;
    pointer-events: none !important;
    top: auto !important;

    right: auto !important;
    animation: blobMove 15s infinite alternate !important;
}

@keyframes blobMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.suggestion-text {
    position: relative !important;
    z-index: 2 !important;
    flex: 1 !important;
    max-width: none !important;

}

.suggestion-text h2 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.04em !important;
    background: linear-gradient(to bottom, #fff, #a1a1aa) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-align: left !important;
}

.suggestion-text p {
    font-size: 1.15rem !important;
    color: #a1a1aa !important;

    color: var(--text-secondary) !important;
    line-height: 1.7 !important;
    max-width: 550px !important;
    margin: 0 !important;
    text-align: left !important;
}

.suggestion-action {
    position: relative !important;
    z-index: 2 !important;
    flex-shrink: 0 !important;
}

.suggestion-action .btn {
    padding: 18px 36px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 15px 30px -5px rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.suggestion-action .btn:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 20px 40px -10px rgba(255, 255, 255, 0.3) !important;
    background: #f4f4f5 !important;
}

@media (max-width: 992px) {
    .suggestion-content {
        flex-direction: column !important;
        text-align: center !important;
        padding: 60px 40px !important;
        gap: 40px !important;
    }

    .suggestion-text h2 {
        font-size: 2.5rem !important;
        text-align: center !important;
    }

    .suggestion-text p {
        margin: 0 auto !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    #loginText {
        display: none;
    }
}

/* --- PREMIUM CONFIGURATION STYLES --- */
.btn-config {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 24px !important;
    width: 100% !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    border: 2px dashed var(--border-subtle) !important;
    border-radius: 20px !important;
    color: var(--text-secondary) !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-family: 'Outfit', sans-serif !important;
    margin-top: 24px !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.btn-config::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%) !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.6s ease, height 0.6s ease !important;
}

.btn-config:hover::before {
    width: 400px !important;
    height: 400px !important;
}

.btn-config:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
    border-color: var(--primary) !important;
    border-style: solid !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px -5px rgba(255, 0, 0, 0.2), 0 0 0 1px rgba(255, 0, 0, 0.1) !important;
}

.btn-config:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 15px -3px rgba(255, 0, 0, 0.15) !important;
}

.btn-config i {
    font-size: 1.2rem !important;
    transition: transform 0.3s ease !important;
}

.btn-config:hover i {
    transform: rotate(90deg) scale(1.1) !important;
}

.ticket-type-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 20px !important;
    padding: 28px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-bottom: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.2) !important;
}

.ticket-type-card:hover {
    border-color: rgba(255, 0, 0, 0.3) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    transform: translateX(8px) translateY(-3px) !important;
    box-shadow: 0 12px 30px -5px rgba(255, 0, 0, 0.15), 0 0 0 1px rgba(255, 0, 0, 0.1) !important;
}

.ticket-type-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(255, 0, 0, 0.3) 100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.ticket-type-card:hover::before {
    width: 6px;
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.ticket-type-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ticket-type-card:hover::after {
    opacity: 1;
}

.config-input,
.config-select {
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 14px !important;
    color: white !important;
    padding: 14px 18px !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-family: 'Inter', sans-serif !important;
    outline: none !important;
    position: relative !important;
    backdrop-filter: blur(5px) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.config-input::placeholder {
    color: var(--text-tertiary) !important;
    opacity: 0.7 !important;
}

.config-input:focus,
.config-select:focus {
    border-color: var(--primary) !important;
    background: rgba(0, 0, 0, 0.35) !important;
    box-shadow: 0 0 0 4px var(--primary-glow), inset 0 2px 4px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px) !important;
}

.btn-danger-subtle {
    background: rgba(239, 68, 68, 0.08) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
    padding: 10px 18px !important;
    border-radius: 12px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-danger-subtle::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: rgba(239, 68, 68, 0.15) !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.4s ease, height 0.4s ease !important;
}

.btn-danger-subtle:hover::before {
    width: 300px !important;
    height: 300px !important;
}

.btn-danger-subtle:hover {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px -5px rgba(239, 68, 68, 0.3) !important;
    color: #ff5555 !important;
}

.btn-danger-subtle:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 10px -3px rgba(239, 68, 68, 0.2) !important;
}

.config-label {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: var(--text-secondary) !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.config-label::before {
    content: '' !important;
    width: 3px !important;
    height: 12px !important;
    background: var(--primary) !important;
    border-radius: 2px !important;
    opacity: 0.6 !important;
}

/* ===== AMÉLIORATION VISUELLE DES CATÉGORIES DE TICKETS ===== */

/* Séparation visuelle entre chaque section de catégorie */
.ticket-category-section {
    margin-bottom: 48px !important;
    padding: 32px !important;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.5) 0%, rgba(12, 12, 14, 0.7) 100%) !important;
    border: 2px solid var(--border-subtle) !important;
    border-radius: 24px !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ticket-category-section::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 5px !important;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(255, 0, 0, 0.4) 50%, var(--primary) 100%) !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4) !important;
}

.ticket-category-section:hover {
    border-color: rgba(255, 0, 0, 0.3) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 50px -15px rgba(255, 0, 0, 0.25) !important;
}

/* Titre de catégorie amélioré */
.category-title {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    margin-bottom: 24px !important;
    padding-bottom: 16px !important;
    border-bottom: 2px solid var(--border-subtle) !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.category-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 100px !important;
    height: 2px !important;
    background: linear-gradient(90deg, var(--primary), transparent) !important;
    transition: width 0.4s ease !important;
}

.ticket-category-section:hover .category-title::after {
    width: 180px !important;
}

/* Icône de catégorie */
.category-icon {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 0, 0, 0.1) !important;
    border: 1px solid rgba(255, 0, 0, 0.2) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.6rem !important;
    transition: all 0.3s ease !important;
}

.ticket-category-section:hover .category-icon {
    transform: rotate(8deg) scale(1.1) !important;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3) !important;
}

/* Amélioration des cartes de tickets individuelles */
.ticket-type-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 18px !important;
    padding: 28px !important;
    margin-bottom: 18px !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.ticket-type-card::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 4px !important;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(255, 0, 0, 0.3) 100%) !important;
    opacity: 0.7 !important;
    transition: all 0.3s ease !important;
}

.ticket-type-card:hover::before {
    width: 6px !important;
    opacity: 1 !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5) !important;
}

.ticket-type-card:hover {
    border-color: rgba(255, 0, 0, 0.35) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    transform: translateX(10px) translateY(-2px) !important;
    box-shadow: 0 12px 30px -5px rgba(255, 0, 0, 0.2), 0 0 0 1px rgba(255, 0, 0, 0.15) !important;
}

/* Séparateur entre catégories */
.category-divider {
    height: 3px !important;
    background: linear-gradient(90deg, transparent, var(--border-subtle) 20%, var(--border-subtle) 80%, transparent) !important;
    margin: 50px 0 !important;
    position: relative !important;
}

.category-divider::after {
    content: '?' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: var(--bg-main) !important;
    color: var(--primary) !important;
    padding: 0 20px !important;
    font-size: 1rem !important;
    text-shadow: 0 0 10px var(--primary-glow) !important;
}

