/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffa12f 0%, #db2c00 100%);
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 98vh;
    text-align: center;
    color: rgb(255, 255, 255);
    padding-top: 10vh;
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    animation: waveMotion 12s linear infinite;
    backdrop-filter: blur(1px);
}

.circle-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 25%;
    left: -8%;
    animation-delay: -0.7s;
    animation-duration: 16s;
}

.circle-3 {
    width: 40px;
    height: 40px;
    top: 35%;
    left: -6%;
    animation-delay: -1.4s;
    animation-duration: 13s;
}

.circle-4 {
    width: 100px;
    height: 100px;
    top: 45%;
    left: -12%;
    animation-delay: -2.1s;
    animation-duration: 18s;
}

.circle-5 {
    width: 70px;
    height: 70px;
    top: 55%;
    left: -9%;
    animation-delay: -2.8s;
    animation-duration: 15s;
}

.circle-6 {
    width: 90px;
    height: 90px;
    top: 65%;
    left: -11%;
    animation-delay: -3.5s;
    animation-duration: 17s;
}

.circle-7 {
    width: 50px;
    height: 50px;
    top: 75%;
    left: -7%;
    animation-delay: -4.2s;
    animation-duration: 14s;
}

.circle-8 {
    width: 85px;
    height: 85px;
    top: 85%;
    left: -10%;
    animation-delay: -4.9s;
    animation-duration: 16s;
}

.circle-9 {
    width: 65px;
    height: 65px;
    top: 20%;
    left: -5%;
    animation-delay: -5.6s;
    animation-duration: 13s;
}

.circle-10 {
    width: 110px;
    height: 110px;
    top: 30%;
    left: -13%;
    animation-delay: -6.3s;
    animation-duration: 19s;
}

.circle-11 {
    width: 45px;
    height: 45px;
    top: 40%;
    left: -4%;
    animation-delay: -7s;
    animation-duration: 12s;
}

.circle-12 {
    width: 95px;
    height: 95px;
    top: 50%;
    left: -14%;
    animation-delay: -7.7s;
    animation-duration: 17s;
}

.circle-13 {
    width: 75px;
    height: 75px;
    top: 60%;
    left: -8%;
    animation-delay: -8.4s;
    animation-duration: 15s;
}

.circle-14 {
    width: 55px;
    height: 55px;
    top: 70%;
    left: -6%;
    animation-delay: -9.1s;
    animation-duration: 14s;
}

.circle-15 {
    width: 120px;
    height: 120px;
    top: 80%;
    left: -15%;
    animation-delay: -9.8s;
    animation-duration: 20s;
}

.circle-16 {
    width: 35px;
    height: 35px;
    top: 10%;
    left: -3%;
    animation-delay: -10.5s;
    animation-duration: 11s;
}

.circle-17 {
    width: 105px;
    height: 105px;
    top: 90%;
    left: -12%;
    animation-delay: -11.2s;
    animation-duration: 18s;
}

.circle-18 {
    width: 65px;
    height: 65px;
    top: 12%;
    left: -7%;
    animation-delay: -11.9s;
    animation-duration: 16s;
}

.circle-19 {
    width: 85px;
    height: 85px;
    top: 38%;
    left: -10%;
    animation-delay: -12.6s;
    animation-duration: 15s;
}

.circle-20 {
    width: 75px;
    height: 75px;
    top: 58%;
    left: -9%;
    animation-delay: -13.3s;
    animation-duration: 17s;
}

/* Enhanced Keyframe Animation */
@keyframes waveMotion {
    0% {
        transform: translateX(-200px) translateY(0px) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    20% {
        transform: translateX(20vw) translateY(-30px) scale(1);
        opacity: 0.2;
    }
    30% {
        transform: translateX(40vw) translateY(25px) scale(0.9);
        opacity: 0.6;
    }
    40% {
        transform: translateX(60vw) translateY(-45px) scale(1.1);
        opacity: 1.0;
    }
    50% {
        transform: translateX(80vw) translateY(35px) scale(0.95);
        opacity: 0.8;
    }
    60% {
        transform: translateX(100vw) translateY(-25px) scale(1.05);
        opacity: 0.6;
    }
    70% {
        transform: translateX(120vw) translateY(40px) scale(0.85);
        opacity: 0.2;
    }
    80% {
        transform: translateX(140vw) translateY(-35px) scale(1);
        opacity: 0.1;
    }
    90% {
        opacity: 0;
    }
    100% {
        transform: translateX(160vw) translateY(0px) scale(0.8);
        opacity: 0;
    }
}

.hero-logo {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    position: relative;
    z-index: 2;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.scroll-text {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.5;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

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

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Content Sections */
.content {
    background: rgb(240, 240, 240);
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.section:last-child {
    border-bottom: none;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #4a5568;
}

.section p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #666;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.game-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* About Section */
.about-content {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.about-content h3 {
    color: #667eea;
    margin: 20px 0 10px;
}

/* Quotes Section */
.quotes {
    background: #f8f9fa;
    padding: 60px 0;
}

.quote-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.quote-author {
    font-weight: bold;
    color: #667eea;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}
