/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll */
    position: relative; /* Position relative to place video absolutely */
    min-height: 100vh; /* Ensure body takes full viewport height */
    display: flex;
    flex-direction: column;
}

/* Video Background */
#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire viewport */
    z-index: -1; /* Place behind other content */
}

/* Promo Box */
.promo-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #000000; /* Purple background */
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    position: fixed; /* Fixed to the top of the page */
    top: 0;
    left: 0;
    z-index: 10; /* Ensure it stays on top of other content */
}

.promo-text {
    font-size: 18px;
    font-weight: bold;
}

.download-rewards-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00bfff; /* Sky blue color */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden; /* Hide overflow for stripe effect */
    position: relative; /* Needed for the pseudo-element */
    transition: background-color 0.3s ease;
}

.download-rewards-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Start off-screen to the left */
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* White strip */
    transform: skewX(-20deg); /* Slant the strip */
    animation: move-strip 2s linear infinite; /* Animation for moving strip */
    z-index: 0; /* Ensure it stays behind the text */
}

.download-rewards-button:hover {
    background-color: #87ceeb; /* Lighter sky blue on hover */
}

/* Container for content */
.container {
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(128, 0, 128, 0.7); /* Semi-transparent purple background */
    border-radius: 10px; /* Rounded corners for the container */
    margin: 0 auto;
    position: relative; /* Ensure content is above the video */
    z-index: 1; /* Make sure content is above the video */
    width: 100%; /* Stretch container to full width */
    background: linear-gradient(45deg, rgba(128, 0, 128, 0.7) 0%, rgba(128, 0, 128, 0.3) 100%); /* Purple gradient for shiny effect */
    box-shadow: 0 0 15px rgba(128, 0, 128, 0.6); /* Purple glow effect */
    flex: 1 0 auto; /* Allow container to grow and shrink with flexbox */
}

/* Hero section */
.hero {
    margin-bottom: 30px;
    padding-top: 50px; /* Add padding to push content down */
}

.game-interface {
    width: 300px; /* Adjust width as needed */
    margin: 0 auto;
}

.game-interface img {
    width: 100%;
    border-radius: 10px; /* Rounded corners for images */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Light shadow */
}

/* Download Button */
.download-button, .info-box {
    position: relative; /* Needed for the strip effect */
    overflow: hidden; /* Ensure strip effect stays within the button */
}

.download-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000000; /* Purple color */
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden; /* Hide overflow for stripe effect */
    position: relative; /* Needed for the pseudo-element */
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Start off-screen to the left */
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* White strip */
    transform: skewX(-20deg); /* Slant the strip */
    animation: move-strip 2s linear infinite; /* Animation for moving strip */
    z-index: 0; /* Ensure it stays behind the text */
}

.download-button:hover {
    background-color: #4b0082; /* Darker purple on hover */
}

/* Info Boxes */
.info-boxes {
    display: flex;
    flex-direction: column; /* Stacks boxes vertically */
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.info-box {
    font-size: 16px;
    padding: 15px;
    background: rgba(128, 0, 128, 0.7); /* Dark semi-transparent purple background */
    color: #fff; /* White text color */
    border-radius: 10px; /* Rounded corners for info boxes */
    width: 200px; /* Adjust width as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative; /* Needed for the strip effect */
    overflow: hidden; /* Ensure strip effect stays within the box */
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Start off-screen to the left */
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* White strip */
    transform: skewX(-20deg); /* Slant the strip */
    animation: move-strip 2s linear infinite; /* Animation for moving strip */
    z-index: 0; /* Ensure it stays behind the text */
}

.security-text {
    font-size: 14px; /* Smaller text for security box */
}

/* Keyframe Animations */
@keyframes move-strip {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes shine {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.8); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
    100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.8); }
}

/* Popup Styles */
#popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 0, 128, 0.9); /* Semi-transparent purple background */
    z-index: 100; /* Ensure popup is on top */
    justify-content: center;
    align-items: center;
}

.popup {
    background-color: #fff;
    padding: 20px;
    max-width: 80%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #000000; /* Purple color */
}

.popup-content {
    text-align: center;
}

#copy-coupon-btn {
    padding: 10px 20px;
    background-color: #000000; /* Purple color */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

.coupon-code {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.note {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Privacy Policy and Terms of Service Styles */
header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 24px;
    color: #000000; /* Purple color */
}

main {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8); /* Light background for readability */
    border-radius: 10px; /* Rounded corners for main content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); /* Dark background for footer */
    color: #fff; /* White text color */
    position: relative; /* Position relative to handle absolute positioning of footer content */
    flex-shrink: 0; /* Ensure footer doesn't shrink and maintains its space */
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Distributes space between items */
    align-items: center;
    max-width: 90vw;
    margin: 0 auto;
}

.footer-link {
    color: #000000; /* Purple color for links */
    text-decoration: none;
    font-size: 14px;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Heading Styles */
.info-heading {
    font-size: 24px; /* Heading size */
    font-weight: bold;
    color: #fff; /* White text color */
    margin-bottom: 20px; /* Spacing below the heading */
}

/* New CSS for Extra Info Section */
.extra-info {
    margin-top: 30px; /* Add margin to create space above the section */
    text-align: center; /* Center-align content */
}

.big-heading {
    font-size: 36px; /* Large font size */
    font-weight: bold; /* Bold text */
    color: #fff; /* White text color */
    margin-bottom: 20px; /* Space below the heading */
}

.extra-info-heading {
    font-size: 18px; /* Adjust font size as needed */
    font-style: italic; /* Italic text */
    color: #fff; /* White text color */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); /* Glow effect */
    margin: 0; /* Remove default margin */
}

.icons-container {
    margin-top: 20px; /* Space above icons */
}

.icons-container img {
    width: 50px; /* Adjust icon width */
    height: auto; /* Maintain aspect ratio */
    margin: 0 10px; /* Margin between icons */
}
