:root {
    --primary-color: #FF007F;
    /* Hot Pink */
    --background-color: #000000;
    /* Black */
    --text-color: #FFFFFF;
    /* White */
    --secondary-bg: #1a1a1a;
    --font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: var(--secondary-bg);
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    height: 50px;
    width: auto;
    border-radius: 5px;
}

.site-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Main Content */
.main-content {
    min-height: 60vh;
    padding-bottom: 50px;
}

.video-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 30px;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio hack if needed, but let's rely on video intrinsic size first */
}

/* 
   Plyr customization for rotation.
   We want to rotate the video element, but NOT the controls.
   Plyr structure: .plyr > .plyr__video-wrapper > video
   Controls are siblings of .plyr__video-wrapper
*/

.plyr__video-wrapper video,
video {
    /* 
       Rotate 90deg to make it landscape.
       Scale 1.778 (16/9) to fill the pillarbox gaps caused by displaying a 9:16 video in a 16:9 player.
    */
    transform: rotate(270deg) scale(1.778) !important;
    transform-origin: center center !important;
}

/* Ensure the video fills the container properly after rotation if needed */
.plyr video {
    object-fit: contain !important;
}

.video-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.6);
}

/* Footer */
.main-footer {
    background-color: var(--secondary-bg);
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-nav {
    margin-top: 15px;
}

.footer-nav a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.2rem;
    }

    .video-title {
        font-size: 1.4rem;
    }
}