
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212; /* Dark background for the main body */
    color: #e0e0e0; /* Light grey text for readability on dark background */
}

/* Container to center content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Basic Link Styling */
a {
    color: #ffaa07; /* Orange-Yellow for links to stand out */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block; /* To remove bottom space */
    margin: 20px 0; /* Add some space around images */
}

/* --- Header & Navigation --- */
header {
    background: linear-gradient(180deg, #0d253f 0%, #121212  100%); /* Blueish gradient background */
    padding: 15px 0;
    border-bottom: 2px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    max-width: 150px;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    z-index: 20; /* Ensure logo is above mobile menu background */
    flex-shrink: 0; /* Prevents logo from shrinking */
}

.logo span {
    /* Red gradient for part of the logo text */
    background: -webkit-linear-gradient(45deg, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px; /* Space between nav links and button */
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav a {
    color: #ffffff;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    display: block;
}

nav a:hover, nav a.active {
    background: linear-gradient(45deg, #ff416c, #ff4b2b); /* Red gradient for hover/active state */
    transform: translateY(-2px);
}

.play-button {
    background-image: linear-gradient(45deg, #ffc107 0%, #ff8c00 100%);
    color: #121212; /* Dark text on yellow button */
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 8px; /* Consistent border radius */
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button:hover {
    text-decoration: none;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 170, 7, 0.4);
}

/* Burger Menu Icon */
.burger-menu {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1010; /* Make sure it's on top */
}

.burger-menu .bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

/* --- Main Content --- */
main {
    padding: 30px 0;
}

/* Hero Banner Section */
.hero-banner {
    position: relative; /* Needed for text overlay */
    border-radius: 12px;
    overflow: hidden; /* Keeps image corners rounded */
    margin-bottom: 40px;
}

.hero-banner .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
}

.hero-banner img {
    margin: 0; /* Remove margin for hero image */
}

h1, h2, h3 {
    font-weight: 700;
    background: -webkit-linear-gradient(45deg, #ffc107, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    font-size: 2.8em;
    margin: 0;
}

h2 {
    font-size: 2.2em;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
    display: inline-block;
}

h3 {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Table Wrapper for responsiveness */
.table-wrapper {
    overflow-x: auto; /* Allows horizontal scrolling on small screens */
    margin: 30px 0;
    border-radius: 8px;
}

/* Table Styling */
.content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1em;
    min-width: 600px; /* Prevents table from becoming too cramped */
}

.content-table thead tr {
    background-color: #0a192f; /* Dark blue from header */
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-table th, .content-table td {
    padding: 15px 20px;
}

.content-table tbody tr {
    border-bottom: 1px solid #333;
    background-color: #1e1e1e;
}

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid #0a192f;
}

.content-table tbody tr:hover {
    background-color: #2a2a2a;
}

/* Call-to-Action (CTA) Block */
.cta-block {
    margin: 50px 0;
    padding: 50px 20px;
    text-align: center;
    border-radius: 12px;
    border: 4px solid transparent;
    background-color: #1a1a1a;
    border-image: linear-gradient(45deg, #ff416c, #ff4b2b) 1;
}

.cta-block h2 {
    margin-top: 0;
    border-bottom: none;
}

.cta-button {
    display: inline-block;
    background-image: linear-gradient(45deg, #ffc107 0%, #ff8c00 100%);
    border: none;
    color: #121212; /* Dark text on yellow button */
    padding: 15px 35px;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px; /* Consistent border radius */
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    text-decoration: none;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Footer --- */
footer {
    background-color: #000000;
    color: #888;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
}

/* --- Responsive Design for mobile --- */
@media (max-width: 992px) {
    .burger-menu {
        display: block; /* Show burger on mobile */
    }

    /* Hide desktop navigation elements */
    .nav-links, .play-button {
        display: none;
    }

    /* Mobile navigation container */
    nav.mobile-open .nav-links-mobile {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        position: absolute;
        top: 71px; /* Height of header */
        left: 0;
        background: #0a192f;
        padding-bottom: 10px;
    }

    /* General mobile nav links */
    nav .nav-links-mobile a {
        text-align: center;
        padding: 15px;
        border-radius: 0; /* Text links are flat edge-to-edge */
        border-bottom: 1px solid #0d253f;
    }

    nav a:hover, nav a.active {
        transform: translateY(0); /* Disable hover transform on mobile */
    }
    
    /* Container for the mobile play button */
    .play-button-mobile {
        padding: 10px 15px 5px 15px; /* Spacing around the button */
        border-bottom: 1px solid #0d253f; /* Match other nav items */
    }

    /* Mobile Play Button - styled as a proper button */
    .play-button-mobile a {
        background-image: linear-gradient(45deg, #ffc107 0%, #ff8c00 100%);
        color: #121212;
        font-weight: bold;
        border-radius: 8px; /* The requested rounded corners */
        padding: 15px;
        border-bottom: none; /* Remove double border */
    }
    
    /* Burger animation to X */
    .burger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }
    
    p {
        font-size: 1em;
    }
}