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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.parallax-container {
    height: 300vh; /* Three times viewport height for scrolling */
    position: relative;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
}

.red-text {
    color: #FF0000;
}

#bg0 {
    background-image: url('EAPrivacyBackground0.png');
    opacity: 1;
}

#bg1 {
    background-image: url('EAPrivacyBackground1.png');
}

#bg2 {
    background-image: url('EAPrivacyBackground2.png');
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.download-btn {
    padding: 1rem 2rem;
    background-color: #FF4081;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

/* Navigation */
.burger-menu {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 100;
}

.burger-menu ul {
    list-style: none;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 10px;
}

.burger-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
}

.burger-menu a:hover {
    color: #FF4081;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* Main Content Sections */
main {
    position: relative;
    z-index: 1;
}

section {
    min-height: 100vh;
    padding: 4rem 2rem;
    /*background-color: rgba(255, 255, 255, 0.9);*/
    margin: 2rem;
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    section {
        margin: 1rem;
        padding: 2rem 1rem;
    }
}

/* How to Play Section */
#privacy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem;
}

.game-step {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.game-step:hover {
    transform: translateY(-10px);
}

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

/* Footer */
footer {
    background: rgba(51, 51, 51, 0.9);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

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

.footer-section {
    padding: 1rem;
}

.footer-link {
    text-decoration: none;
    color: #ffffff;
}

.footer-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.social-links a {
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
}

.social-links a:hover {
    color: #FF4081;
    transform: scale(1.1);
}