:root {
    --primary-color: #ffde59;
    --secondary-color: #000000;
    --text-color: #333333;
    --background-color: #ffffff;
    --light-bg: #fafafa;
    --border-color: #e8e8e8;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--secondary-color);
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    text-decoration-color: var(--secondary-color);
}

/* Main Navigation */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--primary-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 20px;
    gap: 10px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--background-color);
    background: rgba(255, 222, 89, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 100px;
}

.nav-item:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.4);
    border-color: var(--primary-color);
}

.nav-item:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.nav-icon {
    font-size: 1.8rem;
    transition: var(--transition);
}

.nav-item:hover .nav-icon {
    transform: scale(1.15);
}

.nav-text {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-external {
    background: rgba(255, 222, 89, 0.15);
    border-color: var(--primary-color);
}

.nav-external:hover {
    background: linear-gradient(135deg, var(--primary-color), #ffd700);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 222, 89, 0.03) 10px,
        rgba(255, 222, 89, 0.03) 20px
    );
    pointer-events: none;
}

.header img {
    max-width: 120px;
    height: auto;
    margin-right: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 222, 89, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.header img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 222, 89, 0.5);
}

.header h1 {
    color: var(--primary-color);
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
}

/* Section Styles */
section {
    margin-bottom: 60px;
}

.intro, .about {
    margin-bottom: 50px;
    line-height: 1.7;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.intro {
    background: linear-gradient(to bottom, var(--light-bg), var(--background-color));
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
}

.intro h2 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
}

.intro p {
    font-size: 1rem;
    margin-bottom: 1.15rem;
}

.intro strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Featured Section */
.featured-section {
    margin-bottom: 40px;
    padding: 30px 0;
}

.featured-section h2 {
    text-align: center;
    font-size: 1.85rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.about {
    padding: 30px;
    background: var(--background-color);
    border-radius: 12px;
}

.about h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.about p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about ul {
    list-style-type: none;
    padding-left: 0;
    margin: 30px auto;
    max-width: 700px;
}

.about ul li {
    margin-bottom: 20px;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.about ul li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

/* Video Gallery */
.video-gallery {
    padding: 40px 0;
}

.video-gallery h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    color: var(--secondary-color);
}

.video-gallery h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 12px auto 0;
    border-radius: 3px;
}

/* Featured Videos Section */
.featured-videos {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(0, 102, 204, 0.05));
    border-radius: 20px;
    border: 2px solid var(--border-color);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Video Badge Styling */
.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    z-index: 10;
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.latest-badge {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
}

.popular-badge {
    background: linear-gradient(135deg, #0066cc, #0080ff);
    color: white;
}

.all-videos-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    font-family: var(--font-secondary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Video Cards */
.video-item {
    background-color: var(--background-color);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ffd700);
    opacity: 0;
    transition: var(--transition);
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-item:hover::before {
    opacity: 1;
}

.thumbnail-link {
    display: block;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: var(--secondary-color);
}

.thumbnail-link::after {
    content: '\25B6';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.thumbnail-link:hover::after {
    opacity: 0.9;
}

.thumbnail-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.thumbnail-link:hover img {
    opacity: 0.7;
    transform: scale(1.05);
}

.video-item-title {
    padding: 16px;
    font-weight: 600;
    font-family: var(--font-secondary);
    color: var(--secondary-color);
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Toggle Description Button */
.toggle-desc-btn {
    background: linear-gradient(135deg, var(--primary-color), #ffd700);
    color: var(--secondary-color);
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.toggle-desc-btn:hover {
    background: linear-gradient(135deg, #ffd700, var(--primary-color));
    transform: none;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

.toggle-desc-btn:active {
    transform: scale(0.98);
}

/* Video Description */
.video-description {
    display: none;
    padding: 16px;
    background: linear-gradient(to bottom, var(--light-bg), var(--background-color));
    border-top: 2px solid var(--primary-color);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.video-description p {
    margin: 0;
    white-space: pre-wrap;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
}

.video-description.show {
    display: block;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 999;
    transition: all 0.3s ease;
    animation: float-pulse 3s ease-in-out infinite;
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.floating-cta .cta-icon {
    font-size: 1.3rem;
    animation: bounce-icon 2s ease-in-out infinite;
}

.floating-cta .cta-text {
    font-family: var(--font-secondary);
}

@keyframes float-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 69, 0, 0.5);
    }
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Hide floating CTA on desktop when navigation is visible */
@media (min-width: 769px) {
    .floating-cta {
        display: none;
    }
}

/* Mobile optimization */
@media (max-width: 480px) {
    .floating-cta {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .floating-cta .cta-icon {
        font-size: 1.1rem;
    }

    .floating-cta .cta-text {
        display: none;
    }

    .floating-cta {
        border-radius: 50%;
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px 30px;
    margin-top: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: var(--background-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ffd700, var(--primary-color));
}

.footer p {
    margin: 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer .disambiguation-notice {
    margin-bottom: 15px;
}

.footer .disambiguation-notice p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    font-weight: 600;
}

.footer a:hover {
    color: #ffd700;
    text-decoration-color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: relative;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 20px 20px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-item {
        padding: 18px 20px;
        min-width: 100%;
        border-radius: 8px;
        margin-bottom: 8px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }

    .nav-icon {
        font-size: 1.5rem;
    }

    .nav-text {
        font-size: 1rem;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header img {
        max-width: 80px;
        margin-right: 15px;
    }

    .container {
        padding: 40px 20px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .video-gallery h2 {
        font-size: 1.5rem;
    }

    .intro h2, .about h2 {
        font-size: 1.4rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .featured-videos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .featured-videos {
        padding: 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .all-videos-heading {
        font-size: 1.4rem;
    }
}

/* Small phones optimization (401px - 480px) */
@media (max-width: 480px) {
    .header {
        padding: 25px 15px;
    }

    .header h1 {
        font-size: 1.65rem;
    }

    .header img {
        max-width: 70px;
        margin-right: 12px;
    }

    .container {
        padding: 30px 15px;
    }

    .intro, .about {
        padding: 20px 15px;
    }

    .intro h2, .about h2 {
        font-size: 1.3rem;
    }

    .intro p, .about p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .video-gallery h2 {
        font-size: 1.35rem;
    }

    .featured-videos {
        padding: 15px;
        margin-bottom: 30px;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .all-videos-heading {
        font-size: 1.2rem;
        margin: 30px 0 15px;
    }

    .video-grid {
        gap: 25px;
    }

    .video-item-title {
        padding: 14px;
        font-size: 0.95rem;
    }

    .toggle-desc-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer p {
        font-size: 0.9rem;
    }
}

/* Very small phones optimization (≤400px) */
@media (max-width: 400px) {
    /* Make sticky nav less intrusive */
    html {
        scroll-padding-top: 60px;
    }

    .main-nav {
        padding: 8px 0;
    }

    .header {
        padding: 20px 12px;
        flex-direction: column;
        gap: 12px;
    }

    .header img {
        max-width: 60px;
        margin-right: 0;
        margin-bottom: 8px;
    }

    .header h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .hamburger {
        right: 12px;
        padding: 8px;
        top: 50%;
    }

    .hamburger-line {
        width: 24px;
    }

    .container {
        padding: 25px 12px;
    }

    .intro, .about {
        padding: 18px 12px;
    }

    .intro h2, .about h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .intro p, .about p {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }

    .video-gallery h2 {
        font-size: 1.25rem;
    }

    .video-grid {
        gap: 20px;
        margin-top: 20px;
    }

    .video-item {
        border-radius: 12px;
    }

    .video-item-title {
        padding: 12px;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .toggle-desc-btn {
        padding: 9px 14px;
        font-size: 0.8rem;
        margin: 10px 12px;
    }

    .video-description {
        padding: 12px;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer {
        padding: 25px 12px;
    }

    .footer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    /* Reduce list item spacing */
    ul li {
        margin-bottom: 12px !important;
    }

    /* Make links more readable */
    a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Adjust nav menu width for very small screens */
    .nav-container {
        width: 260px;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 30px 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 222, 89, 0.03) 10px,
        rgba(255, 222, 89, 0.03) 20px
    );
    pointer-events: none;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    color: var(--primary-color);
    font-size: 1.85rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.newsletter-description {
    color: var(--primary-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
    text-align: center;
}

/* EmailOctopus form customization - Force override with !important */
.newsletter-form .emailoctopus-form-row {
    margin-bottom: 15px !important;
    text-align: center !important;
}

/* Force center alignment on all EmailOctopus form elements */
.newsletter-form form,
.newsletter-form .emailoctopus-form,
.newsletter-form div {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    width: 100% !important;
    max-width: 400px !important;
    padding: 14px 18px !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-family: var(--font-secondary) !important;
    transition: var(--transition) !important;
    background: white !important;
    color: var(--text-color) !important;
    display: inline-block !important;
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.2) !important;
}

.newsletter-form button[type="submit"] {
    background: linear-gradient(135deg, var(--primary-color), #ffd700) !important;
    color: var(--secondary-color) !important;
    border: none !important;
    padding: 14px 40px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    font-family: var(--font-secondary) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(255, 222, 89, 0.4) !important;
    display: inline-block !important;
    margin: 10px auto 0 !important;
}

.newsletter-form button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(255, 222, 89, 0.6) !important;
}

.newsletter-form button[type="submit"]:active {
    transform: translateY(0) !important;
}

/* Force black background and proper styling on newsletter section */
#newsletter.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%) !important;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid var(--primary-color) !important;
    text-align: center !important;
}

/* Responsive newsletter */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 25px 15px;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .newsletter-form {
        padding: 15px;
    }
}

/* Accessibility improvements */
.toggle-desc-btn:focus,
a:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .toggle-desc-btn {
        display: none;
    }

    .video-description {
        display: block !important;
    }
}
