:root {
    --primary-color: #1a237e;
    --background-color: #f5f3f0;
    --text-color: #333;
    --gradient-start: #ffd700;
    --gradient-end: #ff7f50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    background: linear-gradient(45deg, #00ffcc, #00ccff, #ff3399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoGlow 3s infinite, logoFloat 5s ease-in-out infinite;
}

.logo::before {
    content: '🎮';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: controllerSpin 3s infinite;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffcc, transparent);
    animation: logoLine 3s infinite;
}

@keyframes logoGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 204, 0.8),
                     0 0 30px rgba(0, 204, 255, 0.6),
                     0 0 40px rgba(255, 51, 153, 0.4);
    }
}

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

@keyframes controllerSpin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    25% {
        transform: translateY(-50%) rotate(10deg);
    }
    75% {
        transform: translateY(-50%) rotate(-10deg);
    }
    100% {
        transform: translateY(-50%) rotate(0deg);
    }
}

@keyframes logoLine {
    0%, 100% {
        width: 20%;
        left: 40%;
        opacity: 0.5;
    }
    50% {
        width: 100%;
        left: 0;
        opacity: 1;
    }
}

/* Add sparkle effect for logo hover */
.logo:hover {
    animation: logoHover 0.5s infinite;
}

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

/* Add gaming particles around logo */
.nav-container {
    position: relative;
}

.logo-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00ffcc, #00ccff);
    border-radius: 50%;
    animation: particleFloat 2s infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translate(var(--x), var(--y)) scale(0.5);
        opacity: 1;
    }
}

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

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

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

.lets-play-btn {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lets-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(26, 35, 126, 0.03) 25%, transparent 25%) -20px 0,
        linear-gradient(-45deg, rgba(26, 35, 126, 0.03) 25%, transparent 25%) -20px 0,
        linear-gradient(45deg, transparent 75%, rgba(26, 35, 126, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(26, 35, 126, 0.03) 75%);
    background-size: 40px 40px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: -1;
    animation: patternMove 30s linear infinite;
}

/* Gradient Overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        var(--background-color) 100%
    );
    z-index: -1;
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-left {
    padding-right: 2rem;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.4);
}

/* Robot and Casino Elements */
.robot-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.robot {
    width: 100%;
    height: auto;
    max-width: 400px;
    animation: floatRobot 4s ease-in-out infinite;
}

.casino-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.cards { top: 20%; left: 20%; animation-delay: 0s; }
.coins { top: 40%; right: 25%; animation-delay: 1s; }
.cherries { bottom: 30%; left: 30%; animation-delay: 2s; }
.seven { top: 30%; right: 20%; animation-delay: 3s; }
.bells { bottom: 20%; right: 30%; animation-delay: 4s; }

/* Animations */
@keyframes floatRobot {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
    25% { transform: translate(10px, -10px) rotate(5deg); opacity: 1; }
    50% { transform: translate(0, -20px) rotate(0deg); opacity: 0.8; }
    75% { transform: translate(-10px, -10px) rotate(-5deg); opacity: 1; }
    100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
}

/* Decorative Circles */
.hero-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(26, 35, 126, 0.1);
    animation: float 15s infinite ease-in-out;
}

.circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 20%;
    animation-delay: -2s;
}

.circle:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-left h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
    }

    .nav-links {
        display: none;
    }

    .robot-container {
        height: 400px;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .robot-container {
        height: 300px;
    }
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #283593 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Clean Modern Background */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            rgba(255, 255, 255, 0.03) 1px, 
            transparent 1px
        ) 0 0,
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 100%
        );
    background-size: 30px 100%, 100% 100%;
    opacity: 1;
    animation: moveBackground 20s linear infinite;
    transform-origin: center;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 100%
    );
    mix-blend-mode: overlay;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes::before,
.floating-shapes::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    animation: floatShapes 20s linear infinite;
}

.floating-shapes::before {
    top: 20%;
    left: 20%;
}

.floating-shapes::after {
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes moveBackground {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(30px);
    }
}

@keyframes floatShapes {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 25px) rotate(90deg);
    }
    50% {
        transform: translate(25px, 50px) rotate(180deg);
    }
    75% {
        transform: translate(-25px, 25px) rotate(270deg);
    }
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Shimmering Stars Effect */
.about-illustration::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 200px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 240px 70px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 280px 160px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    animation: shimmer 4s linear infinite;
    z-index: 3;
    opacity: 0.5;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration, 4s) ease-in-out infinite;
    opacity: 0;
}

.star:nth-child(1) { top: 20%; left: 20%; --duration: 3s; }
.star:nth-child(2) { top: 30%; left: 85%; --duration: 4s; }
.star:nth-child(3) { top: 40%; left: 40%; --duration: 5s; }
.star:nth-child(4) { top: 50%; left: 70%; --duration: 3.5s; }
.star:nth-child(5) { top: 60%; left: 25%; --duration: 4.5s; }
.star:nth-child(6) { top: 70%; left: 90%; --duration: 3s; }
.star:nth-child(7) { top: 80%; left: 50%; --duration: 4s; }
.star:nth-child(8) { top: 90%; left: 80%; --duration: 5s; }

@keyframes shimmer {
    0% {
        opacity: 0.3;
        transform: translateX(-10px) translateY(-10px);
    }
    25% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
        transform: translateX(10px) translateY(10px);
    }
    75% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
        transform: translateX(-10px) translateY(-10px);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.about-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    transition: all 0.5s ease;
}

/* Add sparkle effect */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    animation: sparkle var(--duration, 2s) ease-in-out infinite;
    opacity: 0;
    z-index: 4;
}

.sparkle:nth-child(1) { top: 10%; left: 10%; --duration: 2s; }
.sparkle:nth-child(2) { top: 20%; right: 15%; --duration: 2.5s; }
.sparkle:nth-child(3) { bottom: 15%; left: 20%; --duration: 3s; }
.sparkle:nth-child(4) { bottom: 20%; right: 10%; --duration: 2.2s; }

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

.about-content {
    color: white;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-illustration {
        order: -1;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section::before,
    .about-section::after,
    .floating-shapes {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .feature {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 2rem;
    }

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

/* Game Pages Styles */
.game-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 8%;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    min-height: 80vh;
}

.game-content {
    flex: 1;
    max-width: 600px;
    color: white;
}

.game-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #64b5f6;
}

.game-preview {
    flex: 1;
    max-width: 600px;
    padding: 2rem;
}

.game-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.play-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #64b5f6 0%, #2196f3 100%);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.game-details {
    padding: 4rem 8%;
    background: #f5f5f5;
}

.game-details h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a237e;
}

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

.instruction-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #1a237e;
    color: white;
    border-radius: 50%;
    margin-bottom: 1rem;
}

@media (max-width: 968px) {
    .game-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 5%;
    }

    .game-content, .game-preview {
        max-width: 100%;
    }

    .game-preview {
        margin-top: 2rem;
    }

    .game-content h1 {
        font-size: 2.5rem;
    }
}

/* Our Games Section */
.our-games {
    background: linear-gradient(135deg, #0f1642 0%, #1a237e 100%);
    padding: 6rem 8%;
    position: relative;
    overflow: hidden;
}

.our-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.our-games h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.game-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

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

.game-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    color: var(--primary-color);
}

.game-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.game-card p {
    color: rgba(26, 35, 126, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.game-card .play-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), #283593);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card .play-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

@media (max-width: 1024px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .our-games {
        padding: 4rem 5%;
    }
    
    .game-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.disclaimer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 20px 20px;
    animation: patternMove 20s linear infinite;
    opacity: 0.3;
}

.disclaimer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.disclaimer-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.disclaimer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.disclaimer-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    position: relative;
}

.disclaimer-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

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

.disclaimer-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.disclaimer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.disclaimer-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.disclaimer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.disclaimer-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.disclaimer-footer {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notice {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-link {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.support-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .disclaimer-header h2 {
        font-size: 2rem;
    }

    .disclaimer-card {
        padding: 1.5rem;
    }

    .notice {
        font-size: 1rem;
    }

    .support-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .support-link {
        width: 100%;
        text-align: center;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(to right, #0d1b3e, #1a237e);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo .logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
}

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

.divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        align-items: center;
    }

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

    .divider {
        display: none;
    }

    .footer-link {
        font-size: 1.1rem;
    }

    .footer-link::after {
        left: 50%;
        transform: translateX(-50%);
    }
} 