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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #16213e 50%, #0f3460 75%, #533a71 100%);
    color: #ffffff;
    overflow-x: hidden;
    cursor: none;
}

.cursor-glow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.8) 0%, rgba(255,165,0,0.4) 50%, transparent 100%);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease-out;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    padding: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-gem {
    font-size: 1.5rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.play-btn {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    text-decoration: none;
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 2rem 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(255,165,0,0.1) 50%, transparent 100%);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.cta-primary {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    text-decoration: none;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
}

.cta-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.4s forwards;
}

.game-preview {
    position: relative;
    width: 400px;
    height: 300px;
}

.game-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.reels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.reel {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: spin 2s linear infinite;
}

.reel:nth-child(2) { animation-delay: 0.2s; }
.reel:nth-child(3) { animation-delay: 0.4s; }
.reel:nth-child(4) { animation-delay: 0.6s; }
.reel:nth-child(5) { animation-delay: 0.8s; }

@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.game-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coin-counter {
    color: #FFD700;
    font-weight: 600;
}

.spin-btn {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    animation: pulse 2s infinite;
}

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

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

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #cccccc;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

.featured-game {
    padding: 8rem 0;
    background: rgba(26, 10, 46, 0.3);
}

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

.game-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.featured-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.game-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.feature-icon {
    font-size: 1.2rem;
}

.play-featured {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.play-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
}

.featured-visual {
    position: relative;
    height: 400px;
}

.amazon-scene {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,150,200,0.3) 0%, rgba(0,100,150,0.5) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.water-surface {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, rgba(78, 205, 196, 0.2) 0%, rgba(78, 205, 196, 0.5) 100%);
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.1); }
}

.fish {
    position: absolute;
    font-size: 2rem;
    animation: swim 4s linear infinite;
}

.fish-1 {
    top: 60%;
    left: 10%;
    animation-delay: 0s;
}

.fish-2 {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.fish-3 {
    bottom: 20%;
    left: 60%;
    animation-delay: 2s;
}

@keyframes swim {
    0% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(0px); }
}

.treasure {
    position: absolute;
    bottom: 10%;
    left: 50%;
    font-size: 2rem;
    animation: sparkle 2s infinite;
}

.fishing-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, #FFD700, transparent);
    animation: cast 3s ease-in-out infinite;
}

@keyframes cast {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(10px) rotate(5deg); }
}

.games {
    padding: 8rem 0;
}

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

.game-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.featured-card {
    border-color: #FF6B6B;
    background: linear-gradient(145deg, #2a1a3e, #26234e);
}

.featured-card:hover {
    border-color: #FF6B6B;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

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

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.game-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.game-desc {
    color: #cccccc;
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.rating {
    color: #FFD700;
}

.players {
    color: #4ECDC4;
}

.play-game-btn {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.play-game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
}

.features {
    padding: 8rem 0;
    background: rgba(22, 33, 62, 0.3);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon {
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
}

.feature-desc {
    color: #cccccc;
    line-height: 1.6;
}

.testimonials {
    padding: 8rem 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: #FFD700;
    display: block;
}

.author-location {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFD700;
    transform: scale(1.2);
}

.about {
    padding: 8rem 0;
    background: rgba(83, 58, 113, 0.2);
}

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

.section-badge {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.about-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-stat {
    text-align: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.feature-check {
    color: #4ECDC4;
    font-size: 1.2rem;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFD700;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.progress-label {
    width: 120px;
    color: #cccccc;
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    transition: width 2s ease-out;
}

.progress-value {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    background: #ffffff;
    color: #FF6B6B;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-note {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer {
    background: #0a0a0a;
    padding: 4rem 0 2rem;
    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: 0.5rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

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

.footer-disclaimer {
    background: rgba(255, 107, 107, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #FF6B6B;
    margin-bottom: 1rem;
}

.footer-disclaimer p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-content,
    .featured-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-features {
        grid-template-columns: 1fr;
    }
    
    .cta-note {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 120px 1rem 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .game-preview {
        width: 300px;
        height: 250px;
    }
}
.nav-logo a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-page {
    min-height: 100vh;
    padding: 120px 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #16213e 50%, #0f3460 75%, #533a71 100%);
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.privacy-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.last-updated {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-content {
    color: #cccccc;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
}

.privacy-list li {
    background: rgba(255, 215, 0, 0.05);
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    font-size: 1rem;
}

.privacy-list li strong {
    color: #FFD700;
}

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

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(78, 205, 196, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.security-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.security-text h3 {
    color: #4ECDC4;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.security-text p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.cookie-type {
    background: rgba(255, 107, 107, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.cookie-type h3 {
    color: #FF6B6B;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.cookie-type p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cookie-note {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    font-style: italic;
    color: #FFD700;
    margin-top: 1.5rem !important;
}

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

.right-item {
    text-align: center;
    background: rgba(255, 165, 0, 0.1);
    padding: 2rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.4);
}

.right-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.right-item h3 {
    color: #FFA500;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.right-item p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.age-verification {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 107, 107, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.age-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.age-text h3 {
    color: #FF6B6B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.age-text p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.contact-info {
    background: rgba(78, 205, 196, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: #4ECDC4;
    margin-right: 0.5rem;
}

.contact-item a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFA500;
}

@media (max-width: 768px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-section {
        padding: 2rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .security-features,
    .cookie-types,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .age-verification {
        flex-direction: column;
        text-align: center;
    }
    
    .age-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .privacy-page {
        padding: 100px 0 2rem;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-heading {
        font-size: 1.3rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
.game-page {
    min-height: 100vh;
    padding: 100px 0 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 25%, #16213e 50%, #0f3460 75%, #533a71 100%);
}

.game-header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 2rem;
}

.game-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.game-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.game-disclaimer-top {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.disclaimer-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.disclaimer-text h3 {
    color: #FF6B6B;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.disclaimer-text p {
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}

.game-container {
    margin-bottom: 3rem;
}

.game-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.game-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 18px;
}

.game-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.5s ease-out;
}

.loading-spinner {
    font-size: 4rem;
    animation: loadingSpinner 2s linear infinite;
    margin-bottom: 1rem;
}

@keyframes loadingSpinner {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.loading-subtext {
    font-size: 1rem;
    color: #cccccc;
}

.game-disclaimer-bottom {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 3rem;
}

.disclaimer-full h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 215, 0, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #FFD700;
}

.disclaimer-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.disclaimer-item strong {
    color: #FFD700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.disclaimer-item p {
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
}

.responsible-gaming {
    background: rgba(78, 205, 196, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(78, 205, 196, 0.3);
    text-align: center;
}

.responsible-gaming p {
    color: #4ECDC4;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.responsible-gaming strong {
    color: #FFD700;
}

@media (max-width: 1024px) {
    .game-iframe-wrapper {
        height: 70vh;
        min-height: 500px;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .game-title {
        font-size: 2.5rem;
    }
    
    .game-iframe-wrapper {
        height: 60vh;
        min-height: 400px;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-item {
        flex-direction: column;
        text-align: center;
    }
    
    .game-disclaimer-bottom {
        padding: 2rem;
    }
    
    .disclaimer-full h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .game-page {
        padding: 80px 0 0;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-iframe-wrapper {
        height: 50vh;
        min-height: 350px;
    }
    
    .game-disclaimer-top,
    .game-disclaimer-bottom {
        padding: 1.5rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .disclaimer-content {
        gap: 0.5rem;
    }
    
    .disclaimer-icon,
    .disclaimer-emoji {
        font-size: 1.5rem;
    }
    
    .loading-spinner {
        font-size: 3rem;
    }
    
    .loading-text {
        font-size: 1.2rem;
    }
}