/* ---
   Moon Star Express Brand Styles (V2 - Based on Screenshot)
   --- */

/* Brand variables based on your screenshot.
  Tweak these hex codes to get a perfect match!
*/
:root {
    --color-dark-blue: #0a1c3d;
    --color-accent-green: #A4C900; /* The button/frame green */
    --color-text-dark: #333333;
    --color-bg-light: #FFFFFF;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

/* Global settings */
body {
    /* The dark blue from your site's banner */
    background-color: var(--color-dark-blue); 
    
    /* The standard body font */
    font-family: var(--font-body);
    color: var(--color-text-dark);
    
    /* Center the content "card" on the page */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* The main container for the player.
  This is now the white content box, like in your screenshot.
*/
.video-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
    background: var(--color-bg-light);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --- Header Styling --- */
h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem; /* Big and bold */
    font-weight: 700;
    color: var(--color-accent-green); /* Dark text on the white bg */
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
    text-transform: uppercase;
}

/* The sub-heading, styled with the accent green */
h1 span {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-dark); /* Using the green */
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Player Frame Styling --- */
.player-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    
    /* Using the accent green as a border, like the frame */
    border: 5px solid var(--color-accent-green);
}

/* Style both the video and the image the same way */
#myVideoPlayer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.btns{
    display: flex;
    gap: 20px;
    justify-content: center;
}
button{
    background-color: var(--color-accent-green);
    padding: 16px 32px;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 8px;
    border: none;
    margin-top: 20px;

}
/* --- Footer Text --- */
.footer-text {
    margin-top: 1.5rem;
    color: #777;
    font-size: 0.9rem;
    font-family: var(--font-body);
}