/* Universal Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #202022; /* Dark background */
    color: #ffffff;
    line-height: 1.6;
}

/* --- Navigation Bar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
}

.logo h1 {
    font-size: 1.2em;
    font-weight: 800;
}

.menu-icon {
    font-size: 1.5em;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
    padding-bottom: 80px; 
}

.content-wrapper {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 10; 
}

/* --- Image and Rewards --- */
/* NEW WRAPPER: Defines the space for the image area */
.image-rewards-wrapper {
    position: relative;
    width: 100%;
    height: 420px; /* INCREASED HEIGHT to better fit the image/rewards */
    margin-bottom: 0; /* Remove space here to pull text up */
}

/* Relative positioning for the image/reward container */
.main-hero-img-container {
    position: relative; 
    display: inline-block;
    width: 300px; 
    height: 100%;
}

.main-hero-img {
    width: 100%;
    max-width: 300px; 
    height: 100%;
    object-fit: contain; 
    margin: 0 auto;
    display: block; 
}

.reward-tag {
    position: absolute;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    z-index: 15;
}

/* FIX: Reposition rewards to be closer to the figure */
.paypal {
    background-color: #ADD8E6; 
    top: 150px; /* Shifted down */
    left: -50px; 
    transform: rotate(-10deg);
}

.amazon {
    background-color: #FFD700; 
    top: 230px; /* Shifted down */
    right: -50px; 
    transform: rotate(5deg);
}


/* --- Green Gems (Decorative) --- */
.gem {
    position: absolute;
    width: 30px;
    height: 40px;
    background: linear-gradient(45deg, #32CD32, #98FB98);
    transform: rotate(45deg) skewX(20deg);
    opacity: 0.7;
    filter: blur(1px);
    border-radius: 5px;
    z-index: 5;
}

.gem-1 { top: 30px; right: -20px; }
.gem-2 { top: 120px; left: -40px; width: 20px; height: 30px; opacity: 0.8;}
.gem-3 { bottom: 80px; right: -50px; }


/* --- Text --- */
.main-headline {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.1;
    /* FIX: Pull the headline up to reduce space between image and text */
    margin-top: -30px; 
    margin-bottom: 15px;
    color: #ffffff;
}

.game-name {
    color: #5cb85c;
}

.sub-headline {
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 40px;
    color: #cccccc;
}

/* --- Download Buttons --- */
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #000; 
    height: 50px; 
    padding: 0 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.android, .apple {
    background-color: #ffffff;
}

.btn:hover {
    background-color: #e6e6e6; 
}

/* Icon styles for text/symbol icons */
.icon {
    font-size: 1.2em; 
    line-height: 1;
    margin-left: 10px;
    vertical-align: middle;
}

.play-icon {
    font-size: 1.5em; 
}

.apple-icon {
    /* No additional styling needed */
}


/* --- Bottom Left Icon --- */
.bottom-left-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1E90FF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.bottom-left-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
}
