/* Casino N8 - Premium Gaming Platform Styles */
:root {
    --ebony-black: #1A1A1A;
    --deep-violet: #6A0DAD;
    --goldenrod: #FFC300;
    --slate-gray: #3D3D3D;
    --pale-yellow: #FFF3B0;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--ebony-black);
    background: linear-gradient(135deg, var(--ebony-black) 0%, var(--slate-gray) 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FFC300" opacity="0.1"/><circle cx="5" cy="5" r="0.5" fill="%23FFF3B0" opacity="0.15"/><circle cx="15" cy="15" r="0.5" fill="%23FFF3B0" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-pattern)"/></svg>');
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, var(--ebony-black) 0%, var(--deep-violet) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-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(--goldenrod);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: var(--goldenrod);
    background: rgba(255, 195, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 195, 0, 0.2);
    color: var(--goldenrod);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--goldenrod);
    outline-offset: 2px;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: var(--slate-gray);
    padding: 0.5rem 0;
    margin-bottom: 2rem;
}

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

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    color: var(--pale-yellow);
}

.breadcrumb-list a {
    color: var(--pale-yellow);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--goldenrod);
}

.breadcrumb-list li:not(:last-child)::after {
    content: ' / ';
    margin-left: 0.5rem;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 243, 176, 0.05) 100%);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-violet), var(--goldenrod), var(--deep-violet));
    border-radius: 15px 15px 0 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-violet) 0%, var(--goldenrod) 100%);
    color: var(--white);
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    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="casino-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23FFF3B0" opacity="0.15"/><circle cx="5" cy="25" r="1" fill="%23FFC300" opacity="0.2"/><circle cx="25" cy="5" r="1.5" fill="%23FFF3B0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-dots)"/></svg>');
    opacity: 0.6;
}

.hero-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 195, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    padding: 4rem;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, var(--white), var(--pale-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--pale-yellow);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 195, 0, 0.2);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.hero-logo {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--ebony-black), var(--slate-gray));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--goldenrod);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: float 3s ease-in-out infinite;
}

.logo-crown {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.logo-text {
    font-size: 3rem;
    font-weight: 900;
    color: var(--goldenrod);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-shield {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--goldenrod);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-chip,
.floating-card,
.floating-dice {
    position: absolute;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
}

.floating-chip {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.floating-dice {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--goldenrod), #FFD700);
    color: var(--ebony-black);
    box-shadow: 0 8px 25px rgba(255, 195, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700, var(--goldenrod));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 195, 0, 0.4);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover svg {
    transform: translateX(3px);
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 243, 176, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid var(--pale-yellow);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-violet), var(--goldenrod), var(--deep-violet));
    border-radius: 15px 15px 0 0;
}

/* Advantages & Security Section */
.advantages-security-section {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.05) 0%, rgba(255, 195, 0, 0.05) 100%);
    border: 2px solid var(--deep-violet);
}

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

.advantage-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 243, 176, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--pale-yellow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--deep-violet), var(--goldenrod));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.advantage-card:hover::before {
    opacity: 0.05;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(106, 13, 173, 0.2);
    border-color: var(--deep-violet);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-violet), var(--goldenrod));
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.advantage-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.3);
}

.advantage-card:hover .advantage-icon svg {
    transform: scale(1.1);
}

.advantage-card h3 {
    color: var(--deep-violet);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.advantage-card p {
    color: var(--ebony-black);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin: 0;
}

.security-highlight {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--deep-violet) 0%, var(--goldenrod) 100%);
    border-radius: 20px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.security-highlight::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="security-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FFF3B0" opacity="0.1"/><circle cx="5" cy="5" r="0.5" fill="%23FFF3B0" opacity="0.15"/><circle cx="15" cy="15" r="0.5" fill="%23FFF3B0" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23security-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.security-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.security-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.security-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.security-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.security-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.security-text p:last-child {
    margin-bottom: 0;
}

/* Games Slider */
.games-slider-container {
    position: relative;
    margin: 2rem 0;
    padding: 0 3rem;
}

.games-slider {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.games-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.game-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--goldenrod), #FFD700);
    border: none;
    border-radius: 50%;
    color: var(--ebony-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 195, 0, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 195, 0, 0.4);
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    color: var(--deep-violet);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.game-info p {
    color: var(--ebony-black);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--goldenrod);
    font-size: 0.9rem;
}

.rating-text {
    color: var(--slate-gray);
    font-size: 0.8rem;
    font-weight: 600;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--deep-violet), var(--goldenrod));
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(106, 13, 173, 0.4);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--pale-yellow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--goldenrod);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--goldenrod);
    transform: scale(1.1);
}

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

.content-section h3 {
    color: var(--slate-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: 15px;
    text-align: center;
    border: 2px solid var(--pale-yellow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--goldenrod), var(--pale-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: var(--goldenrod);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-violet), var(--goldenrod));
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.3);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 2;
}

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

/* Registration Steps */
.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
}

.registration-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, var(--deep-violet), var(--goldenrod));
    z-index: 1;
}

@media (max-width: 768px) {
    .registration-steps::before {
        display: none;
    }
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 243, 176, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid var(--pale-yellow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-violet), var(--goldenrod));
    border-radius: 15px 15px 0 0;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--goldenrod);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--deep-violet), var(--goldenrod));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

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

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

.registration-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--pale-yellow) 0%, rgba(255, 195, 0, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid var(--goldenrod);
}

.registration-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--ebony-black);
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--pale-yellow);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background: var(--light-gray);
    padding: 1rem;
    cursor: pointer;
    font-weight: bold;
    color: var(--deep-violet);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--pale-yellow);
}

.faq-answer {
    padding: 1rem;
    background: var(--white);
    display: none;
}

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

/* Footer */
.footer {
    background: var(--ebony-black);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--pale-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--goldenrod);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--goldenrod);
    color: var(--ebony-black);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: var(--deep-violet);
    color: var(--white);
    transform: translateY(-2px);
}

.back-to-top.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--ebony-black);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-radius: 5px;
        text-align: center;
        font-size: 1.1rem;
    }

    .nav-menu a:hover {
        background: rgba(255, 195, 0, 0.2);
        color: var(--goldenrod);
    }

    .hero {
        min-height: 70vh;
        padding: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        order: 2;
    }

    .hero-visual {
        order: 1;
        height: 250px;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: none;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-features {
        justify-content: center;
        margin-bottom: 2rem;
        gap: 0.5rem;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .logo-text {
        font-size: 2.2rem;
    }

    .logo-crown {
        font-size: 1.8rem;
    }

    .logo-shield {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .main-content {
        padding: 1rem;
        margin: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
    }

    .advantage-icon svg {
        width: 30px;
        height: 30px;
    }

    .security-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .security-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .security-text h3 {
        font-size: 1.5rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .registration-cta {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .registration-cta p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .main-content {
        margin: 0.5rem;
        padding: 0.5rem;
    }

    .hero {
        min-height: 60vh;
        padding: 1rem 0;
        border-radius: 15px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        width: fit-content;
    }

    .hero-visual {
        height: 200px;
        margin-bottom: 0.5rem;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    .logo-crown {
        font-size: 1.3rem;
    }

    .logo-shield {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .floating-chip,
    .floating-card,
    .floating-dice {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        max-width: 250px;
    }

    .cta-buttons {
        gap: 0.8rem;
    }

    .step {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .registration-cta {
        padding: 1.2rem;
    }

    .registration-cta p {
        font-size: 0.9rem;
    }

    .content-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .content-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .advantage-card {
        padding: 1.2rem;
    }

    .advantage-icon {
        width: 50px;
        height: 50px;
    }

    .advantage-icon svg {
        width: 25px;
        height: 25px;
    }

    .advantage-card h3 {
        font-size: 1.1rem;
    }

    .advantage-card p {
        font-size: 0.9rem;
    }

    .security-highlight {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .security-icon {
        width: 60px;
        height: 60px;
    }

    .security-icon svg {
        width: 30px;
        height: 30px;
    }

    .security-text h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .security-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .games-slider-container {
        padding: 0 1rem;
    }

    .game-card {
        flex: 0 0 250px;
    }

    .game-image {
        height: 150px;
    }

    .game-info {
        padding: 1rem;
    }

    .game-info h3 {
        font-size: 1rem;
    }

    .game-info p {
        font-size: 0.8rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }
}

/* 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(--goldenrod);
    outline-offset: 2px;
}

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

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

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-image {
    animation: float 3s ease-in-out infinite;
}

.feature-card:hover {
    animation: pulse 0.6s ease-in-out;
}

.btn {
    position: relative;
    overflow: hidden;
}

.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.5s ease;
}

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

/* Decorative Elements */
.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--goldenrod), var(--pale-yellow));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.decorative-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

/* Enhanced Visual Effects */
.content-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .back-to-top {
        display: none;
    }
    
    .main-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
