/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    color: #fff;
    line-height: 1.6;
    background: url('aceb8503479b61f27670b3ecc0aa2a3.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 0;
}

.main-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: left;
    z-index: 1;
    flex: 1;
    width: 100%;
    position: relative;
}

/* Header styles */
header {
    margin-bottom: 40px;
}

h1 {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    line-height: 1.4;
}

/* Utility classes */
.hidden {
    display: none !important;
}

/* Game showcase styles */
.game-showcase {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    pointer-events: none;
    background: transparent;
}

.screenshots-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.game-screenshot {
    height: auto;
    max-height: 80vh;
    border-radius: 25px;
    object-fit: contain;
    pointer-events: auto;
    background-color: transparent;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
    will-change: transform;
}

.main-screenshot {
    width: 45%;
    z-index: 2;
    transform: translateX(25%) rotate(3deg);
    position: relative;
}

.second-screenshot {
    width: 45%;
    position: absolute;
    z-index: 1;
    transform: translateX(-35%) rotate(-3deg);
}

/* App download links */
.app-links {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.app-button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.google-play, .apple-store {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

/* Footer styles */
footer {
    width: 100%;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

.footer-links a {
    color: #FFD700;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFF;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .game-showcase {
        width: 40%;
    }
    
    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .content-container {
        text-align: center;
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin: 0 auto 40px;
    }
    
    .game-showcase {
        position: relative;
        width: 100%;
        margin: 40px auto;
        transform: none;
        justify-content: center;
        top: 0;
    }
    
    .screenshots-wrapper {
        flex-direction: column;
    }
    
    .main-screenshot, .second-screenshot {
        position: relative;
        width: 75%;
        max-width: 300px;
        transform: none;
        margin: 0 auto;
    }
    
    .second-screenshot {
        display: none;
    }
    
    .app-links {
        flex-direction: column;
        align-items: center;
    }
} 