/* Root Colors & Fonts */
:root {
    --primary-color: #8B0000;
    --secondary-color: #2C1810;
    --accent-color: #D4AF37;
    --gold-light: #ffe066;
    --black: #181012;
    --gray-dark: #23232b;
    --text-color: #FFF8E1;
    --background-dark: #181012;
    --background-light: #2A2A2A;
    --gradient-primary: linear-gradient(135deg, #8B0000 0%, #2C1810 100%);
    --gradient-accent: linear-gradient(90deg, #D4AF37 0%, #B8860B 100%);
    --shadow-3d: 0 8px 32px 0 rgba(44,24,16,0.45), 0 1.5px 0 #D4AF37;
    --shadow-glow: 0 0 16px #D4AF37, 0 0 32px #8B0000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cinzel', 'MedievalSharp', 'UnifrakturCook', serif;
    background: var(--background-dark);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 10px;
    background: var(--background-dark);
}
body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 8px;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
	
background: linear-gradient(41deg,rgba(139, 0, 0, 1) 0%, rgba(24, 16, 18, 1) 50%, rgba(89, 89, 22, 1) 100%);

   /* background: linear-gradient(90deg, #8B0000 0%, #181012 100%);*/
    box-shadow: 0 2px 16px rgba(44,24,16,0.15);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    height: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--accent-color);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    margin-right: 0;
}
.logo img {
    height: 65px;
    filter: drop-shadow(0 0 8px #D4AF37);
    transition: transform 0.3s;
    margin-bottom: 6px;
    transform: translateY(-18px);
}
.logo img:hover {
    transform: scale(1.07) rotate(-2deg);
}
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.2rem;
    height: 100%;
}
.nav-links a {
    color: #FFF8E1;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.13rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2.5px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.mobile-menu {
    display: none;
    font-size: 2rem;
    color: var(--accent-color);
    cursor: pointer;
}

/* Floating Download Button */
.floating-download-btn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 1200;
    background: var(--gradient-accent);
    color: var(--background-dark);
    border-radius: 50%;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(212,175,55,0.25);
    font-size: 2.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse 2s infinite;
}
.floating-download-btn:hover {
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 0 32px 8px #D4AF37;
    color: var(--primary-color);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 #D4AF37aa; }
    70% { box-shadow: 0 0 0 16px #D4AF3700; }
    100% { box-shadow: 0 0 0 0 #D4AF37aa; }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7) blur(1px);
    pointer-events: none;
}
.hero-overlay {
    background: linear-gradient(to top, rgba(26,16,16,0.18) 5%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.glowing-text {
    font-size: 4.2rem;
    color: var(--accent-color);
    text-shadow: 0 0 18px #D4AF37, 0 0 32px #8B0000, 0 0 64px #D4AF37;
    letter-spacing: 2px;
    animation: glow 2.5s infinite alternate;
    filter: drop-shadow(0 0 8px #D4AF37);
}
@keyframes glow {
    from { text-shadow: 0 0 18px #D4AF37, 0 0 32px #8B0000; }
    to { text-shadow: 0 0 32px #D4AF37, 0 0 64px #8B0000, 0 0 96px #D4AF37; }
}
.illusion-title {
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(0 1px 0 #2C1810) drop-shadow(0 0 4px #D4AF37aa);
}

.illusion-subtitle {
    font-size: 1.6rem;
    color: #FFF8E1;
    text-shadow: 0 0 8px #8B0000;
    margin-bottom: 1.5rem;
}
.cta-button,
.cta-button.hero-cta,
.cta-button.buy-btn {
    color: #2C1810;
    font-weight: 700;
    text-decoration: none !important;
}
.cta-button.hero-cta {
    background: linear-gradient(90deg, #ffe066 0%, #D4AF37 100%);
    border: none;
    border-radius: 32px;
    padding: 1.1rem 2.8rem 1.1rem 2.2rem;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: 0 4px 24px #D4AF3722, 0 1.5px 0 #fff8e1 inset;
    position: relative;
    transition: all 0.25s cubic-bezier(.25,.8,.25,1);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    letter-spacing: 1px;
    overflow: hidden;
}
.cta-button.hero-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, #fff8e133 0%, transparent 100%);
    opacity: 0.7;
    border-radius: 32px;
    pointer-events: none;
}
.cta-button.hero-cta i {
    font-size: 1.3em;
    margin-right: 0.5em;
}
.cta-button.hero-cta:hover {
    color: #8B0000;
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 32px #D4AF37aa, 0 1.5px 0 #fff8e1 inset;
}

/* Section Titles */
.section-title,
.illusion-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    white-space: nowrap;
    font-size: 2.2rem;
}

#about .section-title {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
}



.section-title {
    font-size: 2.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--accent-color);
    letter-spacing: 1.5px;
    text-shadow: 0 0 8px #8B0000;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 3.5px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Sections */
section {
    padding: 5.5rem 0 4.5rem 0;
    background: transparent;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about-section {
    background: linear-gradient(120deg, #4d0411 0%, #2C1810 70%, #544618 100%);
	
    border-radius: 24px;
    box-shadow: var(--shadow-3d);
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
    border: 2px solid #3a2323;
}
.about-flex {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 320px;
}
.about-art {
    flex: 0 0 420px;
    max-width: 520px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.about-art img {
    width: 100%;
    max-width: 520px;
    max-height: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 32px #8B000088, 0 2px 8px #D4AF37aa;
    border: 3px solid #D4AF37;
    padding: px;
    background: #1a1a1a88;
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-art img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 16px 48px #D4AF37cc, 0 2px 8px #8B0000;
}
.about-text {
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.5rem 2rem 0;
    background: rgba(26,16,16,0.12);
    border-radius: 16px;
    box-shadow: 0 2px 12px #8B000044;
    color: var(--gold-light);
    text-shadow: 0 2px 8px #181012;
}
.about-text p {
    font-size: 1.22rem;
    color: #FFF8E1;
    text-shadow: 0 0 4px #2C1810;
    line-height: 2.1;
    margin-bottom: 0;
    letter-spacing: .2px;
}
.about-keywords {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    margin-top: 2.5rem;
}
.feature-card {
    background: var(--background-light);
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-3d);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1.5px solid #D4AF37cc;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-primary);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}
.feature-card i {
    font-size: 2.7rem;
    color: var(--accent-color);
    margin-bottom: 1.1rem;
    filter: drop-shadow(0 0 8px #D4AF37);
}
.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}
.feature-card p {
    font-size: 1.08rem;
    color: #FFF8E1;
    z-index: 1;
}
.feature-card:hover {
    transform: translateY(-12px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 48px 0 #D4AF37cc, 0 1.5px 0 #8B0000;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.7rem;
    margin-top: 2.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 24px #8B000055;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #222;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1), filter 0.4s;
    filter: brightness(0.85) contrast(1.05);
}
.gallery-item:hover img {
    transform: scale(1.08) rotate(-1deg);
    filter: brightness(1.05) contrast(1.1) drop-shadow(0 0 12px #D4AF37);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(139, 0, 0, 0.3) 0%, rgba(212, 175, 55, 0.3) 100%);
    opacity: 0.4;
    transition: opacity 0.3s;
    z-index: 1;
}
.gallery-item:hover::after {
    opacity: 0.2;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(26,16,16,0.97);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}
.lightbox-content {
    position: relative;
    background: #181012;
    border-radius: 18px;
    box-shadow: 0 8px 48px #D4AF37cc;
    padding: 1.5rem;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-content img {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 4px 24px #8B000055;
}
.lightbox-close {
    position: absolute;
    top: 12px; right: 18px;
    background: var(--gradient-accent);
    color: var(--background-dark);
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 40px; height: 40px;
    cursor: pointer;
    box-shadow: 0 2px 8px #D4AF37aa;
    transition: background 0.2s;
}
.lightbox-close:hover {
    background: #8B0000;
    color: #FFF8E1;
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 2001;
}

.lightbox-nav button {
    background: var(--gradient-accent);
    color: var(--background-dark);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px #D4AF37aa;
    transition: all 0.3s;
}

.lightbox-nav button:hover {
    transform: scale(1.1);
    background: #8B0000;
    color: #FFF8E1;
}

.lightbox-nav button.prev {
    margin-right: auto;
}

.lightbox-nav button.next {
    margin-left: auto;
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    margin-top: 2.5rem;
}
.video-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--background-light);
    box-shadow: var(--shadow-3d);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1.5px solid #D4AF37cc;
    cursor: pointer;
}
.video-card:hover {
    transform: translateY(-10px) scale(1.03) rotate(-1deg);
    box-shadow: 0 8px 48px 0 #D4AF37cc, 0 1.5px 0 #8B0000;
}
.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: #222;
}
.video-thumbnail img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.97) contrast(1.08);
    transition: filter 0.3s;
}
.video-card:hover .video-thumbnail img {
    filter: brightness(1.08) contrast(1.15) drop-shadow(0 0 12px #D4AF37);
}
.play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    background: rgba(212, 175, 55, 0.92);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px #D4AF37aa;
    z-index: 2;
}
.play-button i {
    color: var(--background-dark);
    font-size: 2rem;
}
.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 32px #D4AF37;
}

/* Video Popup (iframe) */
.video-thumbnail iframe {
    width: 100%; height: 100%;
    border: none;
    border-radius: 12px;
}

/* Specs Section */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    margin-top: 2.5rem;
}
.specs-card {
    background: var(--background-light);
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-3d);
    border: 1.5px solid #D4AF37cc;
}
.specs-card h3 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
}
.specs-card ul {
    list-style: none;
}
.specs-card li {
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.08rem;
}
.specs-card li::before {
    content: '\2022';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Buy Section */
.buy-section {
	
	background: linear-gradient(41deg,rgba(139, 0, 0, 1) 0%, rgba(24, 16, 18, 1) 50%, rgba(89, 89, 22, 1) 100%);


   /* background: linear-gradient(120deg, #8B0000 0%, #2C1810 100%); */
    border-radius: 24px;
    box-shadow: var(--shadow-3d);
    margin-top: 2.5rem;
    text-align: center;
}
.buy-btn {
    background: linear-gradient(90deg, #ffe066 0%, #D4AF37 100%);
    border: none;
    border-radius: 32px;
    padding: 1.1rem 2.8rem 1.1rem 2.2rem;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: 0 4px 24px #D4AF3722, 0 1.5px 0 #fff8e1 inset;
    position: relative;
    transition: all 0.25s cubic-bezier(.25,.8,.25,1);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    letter-spacing: 1px;
    overflow: hidden;
}
.cta-button.buy-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, #fff8e133 0%, transparent 100%);
    opacity: 0.7;
    border-radius: 32px;
    pointer-events: none;
}
.cta-button.buy-btn i {
    font-size: 1.3em;
    margin-right: 0.5em;
}
.cta-button.buy-btn:hover {
    color: #8B0000;
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 32px #D4AF37aa, 0 1.5px 0 #fff8e1 inset;
}

/* Footer */
.main-footer {
    background: var(--background-light);
    padding: 4rem 0 2rem;
    border-top: 2px solid #D4AF3733;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo img {
    height: 90px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px #D4AF37);
}
.footer-links ul {
    list-style: none;
}
.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--accent-color);
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: var(--accent-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFF8E1;
    font-size: 1rem;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.9s cubic-bezier(.25,.8,.25,1);
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .container { padding: 0 1rem; }
    .nav-container { padding: 1rem 1rem; }
}
@media (max-width: 900px) {
    .features-grid, .gallery-grid, .video-grid, .specs-grid, .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .about-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .about-art, .about-text {
        max-width: 100%;
        flex: 1 1 100%;
    }
}
@media (max-width: 700px) {
    .features-grid, .gallery-grid, .video-grid, .specs-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    .main-nav { padding: 0.5rem 0; }
    .logo img { height: 40px; }
    .section-title { font-size: 1.5rem; }
    .glowing-text { font-size: 2.2rem; }
    .floating-download-btn { right: 16px; bottom: 16px; width: 48px; height: 48px; font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .nav-links { display: none; position: absolute; top: 100%; right: 0; background: #2C1810ee; flex-direction: column; gap: 1.2rem; padding: 1.5rem 2rem; border-radius: 0 0 12px 12px; box-shadow: 0 8px 32px #8B000055; }
    .nav-links.active { display: flex; }
    .mobile-menu { display: block; }
}

/* Hide mobile menu by default */
.mobile-menu { display: none; }

/* === Font Adjustments for Clarity and Professionalism === */
body, .about-content p, .feature-card p, .specs-card li, .buy-note {
    font-family: 'Cinzel', serif;
}
.glowing-text, .illusion-title, .section-title {
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 8px #D4AF37, 0 0 16px #8B0000;
}
.illusion-subtitle {
    font-family: 'MedievalSharp', serif;
}

@media (min-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.section-title.illusion-title {
    color: var(--accent-color);
    text-shadow: 0 0 16px #ffe066, 0 2px 8px #8B0000;
    border-bottom: 2.5px solid var(--accent-color);
    padding-bottom: 0.3rem;
    margin-bottom: 1.2rem;
}

/* إزالة أي خط سفلي من الزرين */
.cta-button.hero-cta, .cta-button.buy-btn {
    border-bottom: none !important;
}

.about-section .section-title,
.about-section .illusion-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    white-space: normal;
}

/* YouTube Video Modal */
.youtube-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(26,16,16,0.97);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}
.youtube-modal-content {
    position: relative;
    background: #181012;
    border-radius: 18px;
    box-shadow: 0 8px 48px #D4AF37cc;
    padding: 0;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.youtube-modal-content iframe {
    width: 80vw;
    height: 45vw;
    max-width: 1100px;
    max-height: 62vh;
    border: none;
    border-radius: 12px;
    background: #000;
}
.youtube-modal-close {
    position: absolute;
    top: 12px; right: 18px;
    background: var(--gradient-accent);
    color: var(--background-dark);
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 44px; height: 44px;
    cursor: pointer;
    box-shadow: 0 2px 8px #D4AF37aa;
    transition: background 0.2s;
    z-index: 10;
}
.youtube-modal-close:hover {
    background: #8B0000;
    color: #FFF8E1;
}
@media (max-width: 900px) {
    .youtube-modal-content iframe {
        width: 96vw;
        height: 54vw;
        max-width: 98vw;
        max-height: 40vh;
    }
}
