/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --accent-purple: #8A2BE2;
    --dark-purple: #4B0082;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-purple: linear-gradient(135deg, #8A2BE2 0%, #4B0082 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    min-width: 120px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-width: 160px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.nav-cta {
    display: flex;
    gap: 1rem;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: var(--transition);
}

/* Breadcrumb */
.breadcrumb {
    margin-top: 80px;
    padding: 1rem 0;
    background: var(--dark-gray);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb-item::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--primary-gold);
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(138, 43, 226, 0.3) 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 5rem 0;
}

.bonuses {
    background: var(--dark-gray);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.bonus-card:hover::before {
    left: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-gold);
}

.bonus-icon {
    margin-bottom: 1rem;
}

.icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* SVG Icon Styling */
.icon svg {
    width: 100%;
    height: 100%;
    color: var(--gold);
    transition: var(--transition);
}

.icon svg:hover {
    color: var(--purple);
    transform: scale(1.1);
}

.bonus-title {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.bonus-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.feature-description {
    opacity: 0.9;
    line-height: 1.6;
}

/* Registration Section */
.registration {
    background: var(--dark-gray);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.registration-text h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.registration-text p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--medium-gray);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.step:hover {
    border-color: var(--primary-gold);
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.8;
    margin: 0;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: var(--transition);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(138, 43, 226, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.game-title {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.game-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* VIP Club Section */
.vip-club {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.vip-club::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vip-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.vip-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.vip-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.vip-benefits li::before {
    content: '👑';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.crown-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

/* Trust Section */
.trust {
    background: var(--dark-gray);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: var(--medium-gray);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.trust-title {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.trust-description {
    opacity: 0.9;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--medium-gray);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary-gold);
}

.faq-icon {
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: var(--gradient-purple);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-title {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-link:hover {
    color: var(--primary-gold);
    opacity: 1;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    opacity: 0.7;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-cta {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        padding: 0;
        list-style: none;
    }
    
    .nav-cta .btn {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vip-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bonus-grid,
    .features-grid,
    .games-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.bonus-card:hover,
.feature-card:hover,
.trust-item:hover {
    animation: glow 2s infinite;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Page-specific styles */
.page-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.policy-content {
    padding: 4rem 0;
    background: var(--dark-gray);
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-text h2 {
    color: var(--primary-gold);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.policy-text h3 {
    color: var(--primary-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.policy-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* About Us specific styles */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: var(--primary-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
}

.values {
    background: var(--dark-gray);
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.value-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.team {
    padding: 4rem 0;
}

.team-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Support page styles */
.support-content {
    padding: 4rem 0;
}

.support-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-intro h2 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.support-intro p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-details strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.support-faq {
    margin-bottom: 4rem;
}

.support-categories {
    margin-bottom: 4rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.category-icon {
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.category-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.response-times {
    background: var(--dark-gray);
    padding: 4rem 0;
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.time-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--medium-gray);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.time-item h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.description {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* 404 Error Page Styles */
.error-page {
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.error-illustration {
    text-align: center;
}

.error-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.error-text {
    text-align: center;
}

.error-title {
    font-size: 8rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-subtitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.error-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popular-pages {
    margin-bottom: 4rem;
    text-align: center;
}

.popular-pages h3 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--medium-gray);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.page-link:hover {
    transform: translateY(-3px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.page-icon {
    flex-shrink: 0;
}

.page-info h4 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.page-info p {
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

.search-section {
    margin-bottom: 4rem;
    text-align: center;
}

.search-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.search-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: var(--medium-gray);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
}

.search-btn {
    padding: 1rem;
    background: var(--gradient-gold);
    border: none;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--gradient-purple);
    color: var(--white);
}

.help-section {
    background: var(--dark-gray);
    padding: 4rem 0;
    text-align: center;
}

.help-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.help-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.help-option {
    background: var(--medium-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.help-option:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.help-icon {
    margin-bottom: 1rem;
}

.help-option h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.help-option p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Breadcrumb current page */
.breadcrumb-current {
    color: var(--primary-gold);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #FFFF00;
        --secondary-gold: #FF8C00;
    }
}
