:root {
        --primary-gold: #F4D03F;
        --secondary-gold: #F7DC6F;
        --dark-bg: #1a1a1a;
        --card-bg: #2d2d2d;
        --text-light: #ffffff;
        --text-muted: #cccccc;
        --accent-green: #28a745;
    }

    .contact-hero {
        text-align: center;
        padding: 3rem 2rem;
        background: linear-gradient(135deg, var(--dark-bg) 0%, var(--card-bg) 100%);
        border-radius: 20px;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
        border: 2px solid var(--primary-gold);
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, rgba(244, 208, 63, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary-gold);
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }

    .contact-hero p {
        font-size: 1.2rem;
        color: var(--text-muted);
        position: relative;
        z-index: 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-card {
        background: linear-gradient(135deg, var(--card-bg) 0%, #3a3a3a 100%);
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 2rem;
        border: 1px solid rgba(244, 208, 63, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

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

    .contact-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-gold);
        box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2);
    }

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

    .contact-method {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        padding: 1.5rem;
        height: 100%;
    }

    .contact-icon {
        /* width: 60px;
        height: 60px;
        border-radius: 50%; */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .line-icon {
        background: linear-gradient(135deg, #00C300, #00E600);
        color: white;
    }

    .facebook-icon {
        background: linear-gradient(135deg, #1877F2, #42A5F5);
        color: white;
    }

    .discord-icon {
        background: linear-gradient(135deg, #5865F2, #7289DA);
        color: white;
    }

    .email-icon {
        background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
        color: var(--dark-bg);
    }

    .contact-card:hover .contact-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .contact-title {
        font-size: 1.3rem;
        font-weight: bold;
        color: var(--primary-gold);
        margin-bottom: 0.5rem;
    }

    .contact-desc {
        color: var(--text-muted);
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.5;
    }

    .support-hours {
        background: linear-gradient(135deg, var(--accent-green) 0%, #20c997 100%);
        color: white;
        padding: 1.5rem;
        border-radius: 15px;
        text-align: center;
        margin: 2rem 0;
    }

    .support-hours h3 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .breadcrumb {
        background: transparent;
        padding: 0;
    }

    .breadcrumb-item a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s ease;
    }

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

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

    .faq-section {
        background: var(--card-bg);
        border-radius: 15px;
        padding: 2rem;
        margin-top: 3rem;
        border: 1px solid rgba(244, 208, 63, 0.3);
    }

    .faq-title {
        color: var(--primary-gold);
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .faq-item {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .faq-question {
        padding: 1rem 1.5rem;
        cursor: pointer;
        transition: background 0.3s ease;
        font-weight: 500;
        color: var(--text-light);
    }

    .faq-question:hover {
        background: rgba(244, 208, 63, 0.1);
    }

    .faq-answer {
        padding: 0 1.5rem 1rem;
        color: var(--text-muted);
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .contact-hero h1 {
            font-size: 2rem;
        }
        
        .contact-hero p {
            font-size: 1rem;
        }
        
        .contact-card {
            padding: 1.5rem;
        }
    }