/* PGLucky88 Casino - Professional CSS with Theme Colors */
:root {
    --deep-black: #0A0A0A;
    --graphite-gray: #2E2E2E;
    --ruby-red: #9B111E;
    --blood-red: #8A0303;
    --gold-accent: #FFD700;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-gray: #666666;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 17, 30, 0.03) 0%, transparent 50%),
        var(--white);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(155, 17, 30, 0.05) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
    animation: float 4s ease-in-out infinite;
}

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

/* Header Styles */
.header {
    background: 
        linear-gradient(135deg, var(--deep-black) 0%, var(--graphite-gray) 100%),
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    color: var(--white);
    padding: 1rem 0;
    position: relative;
    top: 0;
    z-index: 1001;
    box-shadow: 
        0 2px 10px rgba(0,0,0,0.3),
        0 0 20px rgba(255, 215, 0, 0.2);
    border-bottom: 2px solid var(--gold-accent);
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold-accent);
    text-decoration: none;
}

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

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav .nav-btn {
    background: var(--ruby-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.nav .nav-btn:hover {
    background: var(--blood-red);
    color: var(--white);
    transform: translateY(-1px);
}

.nav .nav-btn.nav-btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    margin-left: 0.5rem;
}

.nav .nav-btn.nav-btn-secondary:hover {
    background: var(--white);
    color: var(--deep-black);
    border-color: var(--white);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--deep-black);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    min-height: 200px;
    max-height: 80vh;
    overflow-y: auto;
}


.mobile-menu .nav {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--deep-black);
    display: flex !important;
    visibility: visible !important;
    height: calc(100vh - 70px);
    box-sizing: border-box;
    overflow-y: auto;
}

.mobile-menu .nav-btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    background: var(--gold-accent) !important;
    color: var(--deep-black) !important;
    font-weight: 600 !important;
    border: 1px solid var(--gold-accent) !important;
    border-radius: 6px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-height: 50px;
    transition: all 0.2s ease;
}

.mobile-menu .nav-btn:hover {
    background: var(--ruby-red) !important;
    color: var(--white) !important;
    border-color: var(--ruby-red) !important;
}

.mobile-menu .nav-btn.nav-btn-secondary {
    margin-left: 0;
    background: var(--graphite-gray) !important;
    color: var(--white) !important;
    border: 1px solid var(--graphite-gray) !important;
}

.mobile-menu .nav-btn.nav-btn-secondary:hover {
    background: var(--ruby-red) !important;
    border-color: var(--ruby-red) !important;
}

/* Mobile menu header */
.mobile-menu-header {
    background: var(--deep-black);
    padding: 1rem;
    border-bottom: 1px solid var(--graphite-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10000;
    height: 70px;
    box-sizing: border-box;
}

.mobile-menu-header .logo {
    color: var(--gold-accent);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.mobile-menu-close {
    background: var(--graphite-gray);
    color: var(--white);
    border: 1px solid var(--graphite-gray);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: var(--ruby-red);
    border-color: var(--ruby-red);
}

/* Additional mobile menu styling */
.mobile-menu a {
    display: block !important;
    padding: 1rem 1.5rem;
    color: var(--white) !important;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
    background: var(--graphite-gray) !important;
    border-radius: 6px;
    text-align: left;
    font-weight: 500;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 50px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
    border: 1px solid var(--graphite-gray);
}

.mobile-menu a:hover {
    background: var(--ruby-red) !important;
    border-color: var(--ruby-red);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--gold-accent);
    background-color: var(--graphite-gray);
    padding-left: 1.5rem;
    transition: all 0.2s ease;
}

/* Ensure mobile menu is visible when active */
.mobile-menu.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    background: var(--deep-black) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9999 !important;
    width: 100vw !important;
    height: 100vh !important;
    overflow-y: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--light-gray);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb a {
    color: var(--ruby-red);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Main Content */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* Ensure proper spacing on all screen sizes */
@media (max-width: 1200px) {
    .content-section {
        margin: 3rem 1.5rem;
        width: calc(100% - 3rem);
    }
}

@media (max-width: 768px) {
    .content-section {
        margin: 2rem 1rem;
        width: calc(100% - 2rem);
    }
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, var(--ruby-red) 0%, var(--blood-red) 100%),
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 17, 30, 0.2) 0%, transparent 50%);
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.5),
        0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: glow 1.5s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes glow {
    from {
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.5),
            0 0 20px rgba(255, 215, 0, 0.5);
    }
    to {
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.5),
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.3);
    }
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Banner Image Styling */
.banner-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
    display: block;
    transition: all 0.2s ease;
    border: 2px solid var(--graphite-gray);
}

.banner-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--gold-accent);
}

@media (max-width: 768px) {
    .banner-image {
        margin: 1rem auto;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #FFA500 100%);
    color: var(--deep-black);
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.2s ease;
    border: 2px solid var(--gold-accent);
    cursor: pointer;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.2),
        0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn:hover {
    background: linear-gradient(135deg, var(--ruby-red) 0%, var(--blood-red) 100%);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(155, 17, 30, 0.4),
        0 0 30px rgba(255, 215, 0, 0.5);
    border-color: var(--ruby-red);
}

.btn:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--graphite-gray);
    color: var(--white);
    border: 2px solid var(--graphite-gray);
}

.btn-secondary:hover {
    background: var(--deep-black);
    color: var(--white);
    border-color: var(--deep-black);
}

/* Content Sections */
.content-section {
    margin: 3rem 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 100%);
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255, 215, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    width: calc(100% - 4rem);
    box-sizing: border-box;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ruby-red), var(--gold-accent), var(--ruby-red));
    background-size: 200% 100%;
    animation: gradientShift 2s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255, 215, 0, 0.2);
    border-color: var(--gold-accent);
}

.content-section h2 {
    color: var(--deep-black);
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--ruby-red);
    padding-bottom: 0.5rem;
}

.content-section h3 {
    color: var(--graphite-gray);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

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

.feature-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-card h3 {
    color: var(--ruby-red);
    margin-bottom: 1rem;
}

/* Registration Steps */
.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 100%);
    border-radius: 15px;
    border: 2px solid var(--graphite-gray);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ruby-red), var(--gold-accent));
    background-size: 200% 100%;
    animation: gradientShift 2s ease-in-out infinite;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.step-number {
    background: linear-gradient(135deg, var(--ruby-red) 0%, var(--blood-red) 100%);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(155, 17, 30, 0.3);
    position: relative;
    z-index: 2;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold-accent), var(--ruby-red));
    border-radius: 50%;
    z-index: -1;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.step-content h3 {
    color: var(--deep-black);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.login-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
    border-radius: 12px;
    border-left: 4px solid var(--gold-accent);
}

.login-info h3 {
    color: var(--deep-black);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.login-info p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .registration-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
        margin-bottom: 1rem;
    }
}

/* Game Slider */
.game-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.2),
        0 0 0 3px var(--gold-accent);
    border: 2px solid var(--deep-black);
    margin: 2rem 0;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--graphite-gray) 100%);
}

.game-slider-container {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-slide {
    width: 20%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.game-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.25s ease;
    filter: brightness(0.8);
    background: var(--deep-black);
}

.game-slide:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.game-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg, 
        rgba(0,0,0,0.4) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0,0,0,0.4) 100%
    );
    z-index: 1;
    transition: opacity 0.2s ease;
}

.game-slide:hover::before {
    opacity: 0.7;
}

.game-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--white);
    padding: 2rem 2rem 1.5rem;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.2s ease;
}

.game-slide:hover .game-slide-content {
    transform: translateY(0);
}

.game-slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: var(--gold-accent);
}

.game-slide-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.play-btn {
    background: linear-gradient(135deg, var(--ruby-red) 0%, var(--blood-red) 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(155, 17, 30, 0.4);
    position: relative;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.3s;
}

.play-btn:hover {
    background: linear-gradient(135deg, var(--blood-red) 0%, #6B0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 17, 30, 0.6);
}

.play-btn:hover::before {
    left: 100%;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: var(--white);
    border: 2px solid var(--gold-accent);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.slider-controls:hover {
    background: var(--ruby-red);
    border-color: var(--ruby-red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(155, 17, 30, 0.4);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.slider-indicator.active {
    background: var(--gold-accent);
    transform: scale(1.3);
    border-color: var(--white);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.slider-indicator:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Responsive Design for Game Slider */
@media (max-width: 768px) {
    .game-slider {
        height: 300px;
        border-radius: 15px;
    }
    
    .game-slide-content {
        padding: 1.5rem 1rem 1rem;
    }
    
    .game-slide-content h3 {
        font-size: 1.4rem;
    }
    
    .game-slide-content p {
        font-size: 0.9rem;
    }
    
    .play-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .slider-controls {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .slider-indicator {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .game-slider {
        height: 250px;
    }
    
    .game-slide-content h3 {
        font-size: 1.2rem;
    }
    
    .game-slide-content p {
        font-size: 0.8rem;
    }
    
    .play-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* FAQ Section */
.faq-item {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: var(--gold-accent);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-question {
    background: linear-gradient(135deg, var(--graphite-gray) 0%, var(--deep-black) 100%);
    color: var(--white);
    padding: 1rem;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

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

.faq-question:hover {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--ruby-red) 100%);
    transform: scale(1.02);
}

.faq-question:hover::before {
    left: 100%;
}

.faq-answer {
    padding: 1rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: var(--deep-black);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--graphite-gray);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--ruby-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--blood-red);
    transform: translateY(-2px);
}

.back-to-top.visible {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu .nav-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Force mobile menu to be visible when active on mobile */
    .mobile-menu.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero {
        padding: 4rem 1.5rem;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .main {
        padding: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu .nav-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .header-container {
        padding: 0 0.5rem;
    }
}

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

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .cta-buttons {
        display: none;
    }
    
    .main {
        padding: 0;
    }
}
