/*
Theme Name:   GeneratePress Child - NXR Studios
Theme URI:    https://generatepress.com
Author:       NXR Studios Development Team
Author URI:   https://www.nxrstudios.com
Description:  Child theme for GeneratePress for NXR Studios with custom styles and modifications.
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
*/

@import url("../generatepress/style.css");


/* Color Variables */
:root {
    --background-color: #040707;
    --text-color: #FFF;
    --primary-color: #ed2430;
}

/* Body & Global Styles */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Proxima Nova', sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.site-title {
    font-family: presicav, sans-serif;
    font-weight: 900;
    font-style: normal;
    color: var(--text-color);
}

/* Serif body text option */
.entry-content p,
.serif-text {
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Primary Color for Links & Buttons */
a {
    color: var(--primary-color);
}

a:hover {
    opacity: 0.8;
}

/* Header Styling */
.site-header {
    background-color: var(--background-color);
}

/* Navigation */
.main-navigation a {
    color: var(--text-color);
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.site-footer {
    display: none;
}

/* ========================================
   SITE HEADER
======================================== */

.site-header {
    background-color: var(--background-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header__container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.site-header__logo {
    flex-shrink: 0;
}

.site-header__logo a {
    display: block;
}

.site-header__logo img {
    height: 50px;
    width: auto;
}

.site-header__logo h1 {
    color: var(--text-color);
    font-size: 24px;
    margin: 0;
}

.site-header__logo h1 a {
    color: var(--text-color);
    text-decoration: none;
}

.site-header__logo h1 a:hover {
    color: var(--primary-color);
}

.site-header__social {
    align-items: center;
    display: flex;
    gap: 20px;
}

.site-header__social-link {
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-header__social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.site-header__social-link img {
    display: block;
    height: 30px;
    width: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header__logo img {
        height: 40px;
    }
    
    .site-header__social {
        gap: 15px;
    }
    
    .site-header__social-link img {
        height: 24px;
        width: 24px;
    }
}




/* ========================================
FOOTER
======================================== */
.footer {
    background: linear-gradient(-106deg, #f7374f 0%, #ff0000 100%);
    margin-top: 30px;
    padding: 30px 20px;
    text-align: left;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-tagline {
    margin: 0;
}

.footer-tagline__text {
    color: #FFF;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-tagline__text span {
    display: block;
    line-height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: auto;
    }
    
    .footer-tagline__text {
        font-size: 16px;
    }
}

.footer-support {
    justify-self: flex-end;
}

.footer-support a {
    background-color: #000;
    border: 1px solid #101010;
    border-radius: 6px;
    color: #FFF;
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    text-decoration: none;
}

.footer-support a:hover {
    background-color: #FFF;
    border: 1px solid #FFF;
    color: #000;
    opacity: 1;
}

@media (min-width: 768px) {
    .footer-support {
        margin-left: auto;
    }
}


/* ========================================
   REGISTER PAGE TEMPLATE
======================================== */
.register {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.register-content {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.register-logo {
    margin-bottom: 40px;
}

.register-logo img {
    max-width: 300px;
    height: auto;
}


.register-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.register-form .mepr-signup-form {
    text-align: left;
}

.register-form label {
    font-family: proxima-nova, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
    border-radius: 6px;
    font-family: proxima-nova, sans-serif;
    margin-bottom: 15px;
    width: 100%;
}

.register-form select {
    background-color: #FFF;
    color: #040707;
    padding: 12px 40px 12px 15px;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23000000' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    transition: all 0.3s ease;
}

.register-form select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 36, 48, 0.2);
}

.register-form .mepr-submit {
    width: 100%;
}

.horegisterme-form .mepr_price {
    font-family: proxima-nova, sans-serif;
    font-style: normal;
}

.horegisterme-form .mepr_price_cell_label {
    font-weight: 700;
}

/* ========================================
   BUTTON GRADIENT STYLING
======================================== */
.button,
button,
input[type="submit"],
.wp-block-button__link,
.mepr-submit {
    background: linear-gradient(-106deg, #f7374f 0%, #ff0000 100%);
    color: #FFF;
    border: none;
    padding: 16px 32px;
    font-family: "proxima-nova", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(247, 55, 79, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.mepr-submit:hover {
    background: linear-gradient(-106deg, #ff4560 0%, #ff1a1a 100%);
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 55, 79, 0.6);
}

.button:active,
button:active,
input[type="submit"]:active,
.mepr-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(247, 55, 79, 0.4);
}


/* ========================================
   Social Media Icons
======================================== */
.social {
    align-items: center;
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social a {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.social img {
    width: 40px;
    height: 40px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    
    .social {
        gap: 25px;
    }
    
    .social img {
        width: 36px;
        height: 36px;
    }
}



/* ========================================
   VIDEO LIBRARY
======================================== */
.video-library {
    margin: 0 auto;
    max-width: 1200px;
    padding: 40px 20px;
}

.video-library__filters {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
}

.video-library__filter-group {
    flex: 1;
    min-width: 250px;
}

.video-library__filter-label {
    color: var(--text-color);
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-library__filter-select {
    width: 100%;
}

.video-library__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.video-library__empty {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    grid-column: 1 / -1;
    padding: 60px 20px;
    text-align: center;
}

.video-library__empty-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
}

.video-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(237, 36, 48, 0.3);
    transform: translateY(-5px);
}

.video-card__link {
    color: inherit;
    display: block;
    text-decoration: none;
}

.video-card__thumbnail {
    background-color: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
}

.video-card__image {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.video-card__placeholder {
    align-items: center;
    background: linear-gradient(-106deg, #f7374f 0%, #ff0000 100%);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.video-card__placeholder .dashicons {
    color: rgba(255, 255, 255, 0.5);
    font-size: 80px;
    height: 80px;
    width: 80px;
}

.video-card__overlay {
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    transition: background-color 0.3s ease;
    width: 100%;
}

.video-card:hover .video-card__overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.video-card__play-icon {
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    font-size: 24px;
    height: 60px;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    width: 60px;
}

.video-card:hover .video-card__play-icon {
    opacity: 1;
    transform: scale(1);
}

.video-card__content {
    padding: 20px;
}

.video-card__title {
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.video-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.video-card__badge {
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    text-transform: uppercase;
}

.video-card__badge--category {
    background-color: var(--primary-color);
    color: white;
}

.video-card__badge--playlist {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
    .video-library__grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    
    .video-library__filters {
        flex-direction: column;
    }
    
    .video-library__filter-group {
        min-width: 100%;
    }
}

/* ========================================
   MEMBERPRESS REGISTRATION FORM
======================================== */
/* Hide MemberPress default header on app layout */
.mepr-app-layout .site-header {
    display: none !important;
}

/* App Layout Wrapper */
.app-layout {
    background-color: var(--background-color);
    min-height: 100vh;
}

#primary.site-main {
    background-color: var(--background-color);
    padding: 40px 20px;
}

/* Invoice/Price Display */
.mp_wrapper.mp_invoice {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    margin: 0 auto 30px;
    max-width: 600px;
    padding: 30px;
}

.mp_price_str {
    color: var(--text-color);
    font-family: "proxima-nova", sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.mp_price_str strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Cart Table */
.mp-table {
    width: 100%;
}

.mp-cart-body {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mp-cart-item {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.mp-cart-item-image {
    flex-shrink: 0;
}

.mp-cart-item-image img {
    filter: brightness(0) invert(1);
    height: 50px;
    opacity: 0.5;
    width: 50px;
}

.mp-cart-item-details {
    flex: 1;
}

.mp-cart-item-details p {
    color: var(--text-color);
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    margin: 5px 0;
}

.mp-cart-item-details .desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.mp-currency-cell {
    color: var(--primary-color);
    font-family: presicav, sans-serif;
    font-size: 24px;
    font-weight: 900;
}

/* Cart Footer / Total */
.mp-cart-footer {
    border-top: 2px solid var(--primary-color);
    margin-top: 20px;
    padding-top: 20px;
}

.mp-cart-footer > div {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.mp-cart-footer .bt {
    color: var(--text-color);
    font-family: presicav, sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.mp-cart-footer .total_cell {
    font-size: 32px;
}

/* Payment Form Wrapper */
.mp_wrapper.mp_payment_form_wrapper {
    margin: 0 auto;
    max-width: 600px;
}

/* Block: mepr-signup-form */
.mepr-signup-form,
#mepr-stripe-payment-form {
    margin: 0;
}

/* Form Fields */
.mepr-form-row {
    margin-bottom: 20px;
}

.mepr-form-label {
    color: var(--text-color);
    display: block;
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mepr-form-input,
.mepr-form input[type="text"],
.mepr-form input[type="email"],
.mepr-form input[type="password"],
.mepr-form input[type="tel"],
.mepr-form select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    width: 100%;
}

.mepr-form-input:focus,
.mepr-form input[type="text"]:focus,
.mepr-form input[type="email"]:focus,
.mepr-form input[type="password"]:focus,
.mepr-form input[type="tel"]:focus,
.mepr-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(237, 36, 48, 0.2);
    outline: none;
}

/* Stripe Elements Styling */
.mepr-payment-method-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

/* Stripe card element container */
.mepr-stripe-elements,
.mepr-stripe-card-element,
#mepr-stripe-card-element,
.StripeElement {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 16px 15px;
    transition: all 0.3s ease;
}

#mepr-stripe-card-element:focus,
.StripeElement--focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(237, 36, 48, 0.2);
}

.StripeElement--invalid {
    border-color: #ff4444;
}

/* Stripe Error Messages */
.mepr-stripe-card-errors {
    color: #ff4444;
    font-size: 14px;
    margin-top: 10px;
}

/* Price Display */
.mepr-price-cell,
.mepr-payment-method-label {
    color: var(--text-color);
    font-family: "proxima-nova", sans-serif;
}

.mepr-price-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    margin-bottom: 25px;
    padding: 20px;
}

.mepr-price {
    color: var(--primary-color);
    font-family: presicav, sans-serif;
    font-size: 32px;
    font-weight: 900;
}

/* Submit Button */
.mepr-submit,
.mepr-form input[type="submit"],
input.mepr-submit {
    background: linear-gradient(-106deg, #f7374f 0%, #ff0000 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(247, 55, 79, 0.4) !important;
    color: #FFF !important;
    cursor: pointer;
    font-family: "proxima-nova", sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    padding: 16px 32px !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

.mepr-submit:hover,
.mepr-form input[type="submit"]:hover,
input.mepr-submit:hover {
    background: linear-gradient(-106deg, #ff4560 0%, #ff1a1a 100%) !important;
    box-shadow: 0 6px 20px rgba(247, 55, 79, 0.6) !important;
    color: #FFF !important;
    transform: translateY(-2px);
}

.mepr-submit:active,
.mepr-form input[type="submit"]:active,
input.mepr-submit:active {
    box-shadow: 0 2px 10px rgba(247, 55, 79, 0.4) !important;
    transform: translateY(0);
}

/* Loading Gif */
.mepr-loading-gif {
    display: inline-block;
    margin-left: 10px;
}

/* Error Messages */
.mepr-validation-error,
.mepr-form .mepr-form-error {
    background-color: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    border-radius: 8px;
    color: #ff4444;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px 15px;
}

/* Success Messages */
.mepr-form .mepr-form-success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    border-radius: 8px;
    color: #4caf50;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px 15px;
}

/* Terms & Conditions */
.mepr-terms-conditions {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 15px;
}

.mepr-terms-conditions a {
    color: var(--primary-color);
}

.mepr-terms-conditions input[type="checkbox"] {
    margin-right: 8px;
}

/* Payment Methods */
.mepr-payment-methods-wrapper {
    margin-bottom: 20px;
}

.mepr-payment-method {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px;
}

.mepr-payment-method input[type="radio"] {
    margin-right: 10px;
}

/* Account Info Section */
.mepr-account-info {
    margin-bottom: 30px;
}

.mepr-account-info h3 {
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-color);
    font-family: presicav, sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

/* Payment Info Section */
.mepr-payment-info {
    margin-bottom: 30px;
}

.mepr-payment-info h3 {
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-color);
    font-family: presicav, sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

/* Spacer */
.mepr_spacer,
.mp-spacer {
    height: 20px;
}

/* NoScript Warning */
.mepr_nojs {
    background-color: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    border-radius: 8px;
    color: #ff4444;
    padding: 15px;
}

/* Required Field Indicator */
.mepr-form abbr[title="required"] {
    color: var(--primary-color);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .mp_wrapper.mp_invoice,
    .mp_wrapper.mp_payment_form_wrapper {
        padding: 20px;
    }
    
    .mp-currency-cell {
        font-size: 20px;
    }
    
    .mp-cart-footer .total_cell {
        font-size: 24px;
    }
    
    .mepr-price {
        font-size: 28px;
    }
    
    .mepr-submit,
    .mepr-form input[type="submit"] {
        font-size: 16px !important;
        padding: 14px 24px !important;
    }
}

/* ========================================
   VIDEO DETAIL PAGE
======================================== */
.video-detail {
    background-color: var(--background-color);
    min-height: 100vh;
    padding: 40px 20px;
}

.video-detail__container {
    margin: 0 auto;
    max-width: 1200px;
}

.video-detail__player {
    background-color: #000;
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.video-detail__player iframe {
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
    height: 100%;
    width: 100%;
}

.video-detail__player video {
    display: block;
    width: 100%;
}

.video-detail__content {
    margin: 0 auto;
    max-width: 900px;
}

.video-detail__header {
    margin-bottom: 30px;
}

.video-detail__title {
    color: var(--text-color);
    font-family: presicav, sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.video-detail__meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.video-detail__badge {
    border-radius: 4px;
    font-family: "proxima-nova", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    text-transform: uppercase;
}

.video-detail__badge--category {
    background-color: var(--primary-color);
    color: white;
}

.video-detail__badge--playlist {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
}

.video-detail__date {
    color: rgba(255, 255, 255, 0.5);
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
}

.video-detail__description {
    border-left: 4px solid var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    font-family: "proxima-nova", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-left: 20px;
}

.video-detail__body {
    color: var(--text-color);
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.video-detail__body p {
    margin-bottom: 20px;
}

.video-detail__body h2,
.video-detail__body h3 {
    color: var(--text-color);
    font-family: presicav, sans-serif;
    font-weight: 900;
    margin: 30px 0 15px;
}

.video-detail__actions {
    margin: 40px 0;
}

.video-detail__back-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    display: inline-block;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-detail__back-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(-5px);
}

.video-detail__related {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    margin: 60px auto 0;
    max-width: 1200px;
    padding-top: 40px;
}

.video-detail__related-title {
    color: var(--text-color);
    font-family: presicav, sans-serif;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 30px;
}

.video-detail__related-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.video-detail__related-item {
    color: var(--text-color);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.video-detail__related-item:hover {
    transform: translateY(-5px);
}

.video-detail__related-thumb {
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.video-detail__related-thumb img {
    display: block;
    height: auto;
    width: 100%;
}

.video-detail__related-overlay {
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    transition: background-color 0.3s ease;
    width: 100%;
}

.video-detail__related-item:hover .video-detail__related-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.video-detail__play-icon {
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    font-size: 20px;
    height: 50px;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    width: 50px;
}

.video-detail__related-item:hover .video-detail__play-icon {
    opacity: 1;
    transform: scale(1);
}

.video-detail__related-title-text {
    color: var(--text-color);
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.video-detail__date {
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.video-detail__date svg {
    flex-shrink: 0;
    margin-right: 5px;
}

/* Element: video-detail__player */
.video-detail__player {
    background-color: #000;
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

/* Vimeo responsive wrapper */
.video-detail__player > div {
    position: relative;
}

.video-detail__player iframe {
    border: none;
    display: block;
    height: 100%;
    width: 100%;
}

.video-detail__player video {
    display: block;
    width: 100%;
}

.video-card {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .video-detail__title {
        font-size: 28px;
    }
    
    .video-detail__description {
        font-size: 16px;
    }
    
    .video-detail__related-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   LANDING PAGE
======================================== */
.landing {
    background-color: #000;
    background-image: url('images/landing-background-mobile.png');
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
}

@media (min-width: 768px) {
    .landing {
        background-image: url('images/landing-background-desktop.png');
    }
}

.landing__container {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 80px 20px 120px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .landing__container {
        padding: 80px 20px 120px;
    }
}

.landing__logo {
    margin-bottom: 60px;
}

.landing__logo img {
    height: auto;
    max-width: 200px;
    width: 100%;
}

.landing__content {
    max-width: 1200px;
    text-align: center;
    width: 100%;
}

.landing__headline {
    color: #FFF;
    font-family: presicav, sans-serif;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.landing__subheadline {
    color: #FFF;
    font-family: "calluna", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 50px 0;
}

.landing__cta {
    background: linear-gradient(-106deg, #f7374f 0%, #ff0000 100%);
    border-radius: 8px;
    color: #FFF;
    display: inline-block;
    font-family: "proxima-nova", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 18px 60px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.landing__cta:hover {
    background: linear-gradient(-106deg, #ff4560 0%, #ff1a1a 100%);
    box-shadow: 0 12px 32px rgba(237, 36, 48, 0.7);
    color: #FFF;
    transform: translateY(-3px);
}

.landing__cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.landing__social {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
}

.landing__social-link {
    align-items: center;
    color: #FFF;
    display: flex;
    height: 50px;
    justify-content: center;
    transition: all 0.3s ease;
    width: 50px;
}

.landing__social-link:hover {
    border-color: #ed2430;
    color: #ed2430;
    transform: translateY(-3px);
}

.landing__social-link svg {
    height: 24px;
    width: 24px;
}

.landing__footer {
    background: linear-gradient(-106deg, #f7374f 0%, #ff0000 100%);
    bottom: 0;
    left: 0;
    padding: 20px;
    position: relative;
    width: 100%;
    z-index: 3;
}

@media (min-width: 768px) {
    .landing__footer {
        position: fixed
    }
}

.landing__footer-content {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 40px;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 1200px;
}

.landing__footer-logo {
    height: 40px;
    width: auto;
}

.landing__footer-text {
    color: #FFF;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.landing__footer-text span {
    display: block;
    margin: 0;
    text-align: left;
}

@media (min-width: 768px) {
    .landing__footer-content span {
        display: inline-block;
        margin-right: 5px;
    }
}

@media (max-width: 768px) {    
    .landing__logo {
        margin-bottom: 40px;
    }
    
    .landing__logo img {
        max-width: 200px;
    }
    
    .landing__headline {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .landing__subheadline {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .landing__cta {
        font-size: 16px;
        padding: 16px 40px;
    }
    
    .landing__cta-description {
        font-size: 14px;
    }
    
    .landing__social {
        gap: 15px;
        margin-top: 40px;
    }
    
    .landing__social-link {
        height: 64px;
        width: 64px;
    }
    
    .landing__social-link svg {
        height: 32px;
        width: 32px;
    }
    
    .landing__footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .landing__footer-logo {
        height: 32px;
    }
    
    .landing__footer-text {
        font-size: 14px;
        line-height: 16px;
        text-align: center;
    }
}


.landing__login-bar {
    background-color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    left: 0;
    padding: 8px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.landing__login-bar-container {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin: 0 auto;
    max-width: 1200px;
}

.landing__login-bar-text {
    color: rgba(255, 255, 255, 0.7);
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    margin: 0;
}

.landing__login-bar-link {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #FFF;
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing__login-bar-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFF;
}

.landing__container {
    padding-top: 100px;
}

@media (max-width: 768px) {
    .landing__login-bar-container {
        justify-content: center;
    }
    
    .landing__login-bar-text {
        font-size: 13px;
    }
    
    .landing__login-bar-link {
        font-size: 13px;
        padding: 6px 16px;
    }
    
    .landing__container {
        padding-top: 80px;
    }
}

/* ========================================
   MY ACCOUNT
======================================== */
.my-account {
    background-color: var(--background-color);
    min-height: 100vh;
    padding: 40px 20px 120px;
}

.my-account__container {
    margin: 0 auto;
    max-width: 1000px;
}

.my-account__title {
    color: var(--text-color);
    font-family: presicav, sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 40px 0;
    text-align: center;
}

.my-account__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}

.my-account__card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.my-account__card--full {
    grid-column: 1 / -1;
}

.my-account__card-title {
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-color);
    font-family: presicav, sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
}

.my-account__description {
    color: rgba(255, 255, 255, 0.7);
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    margin: 0 0 20px 0;
}

.my-account__note {
    color: rgba(255, 255, 255, 0.7);
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    margin: 30px 0 0 0;
}

.my-account__note a:hover {
    color: #f7374f;
}

.my-account__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.my-account__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.my-account__label {
    color: var(--text-color);
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.my-account__input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.my-account__input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(237, 36, 48, 0.2);
    outline: none;
}

.my-account__button {
    background: linear-gradient(-106deg, #f7374f 0%, #ff0000 100%);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(247, 55, 79, 0.4);
    color: #FFF;
    cursor: pointer;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
    padding: 14px 32px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.my-account__button:hover {
    background: linear-gradient(-106deg, #ff4560 0%, #ff1a1a 100%);
    box-shadow: 0 6px 20px rgba(247, 55, 79, 0.6);
    color: #FFF;
    transform: translateY(-2px);
}

.my-account__button--primary {
    display: inline-block;
}

.my-account__message {
    border-radius: 8px;
    font-family: "proxima-nova", sans-serif;
    margin-bottom: 20px;
    opacity: 1;
    padding: 15px 20px;
    transition: opacity 0.3s ease;
}

.my-account__message--success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.my-account__message--error {
    background-color: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
}

.site-header__member-nav {
    align-items: center;
    display: flex;
    gap: 20px;
}

.site-header__member-link {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--text-color);
    font-family: "proxima-nova", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-header__member-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.site-header__member-link--logout:hover {
    background-color: rgba(237, 36, 48, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .my-account__title {
        font-size: 32px;
    }
    
    .my-account__grid {
        grid-template-columns: 1fr;
    }
    
    .my-account__card {
        padding: 20px;
    }
    
    .site-header__member-nav {
        gap: 10px;
    }
    
    .site-header__member-link {
        font-size: 12px;
        padding: 6px 12px;
    }
}