/* Global Typography & Font Consistency */
body,
p,
a,
span,
li,
ul,
ol,
div,
input,
button,
select,
textarea {
    font-family: 'Poppins', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

body {
    background-color: #060b13;
    color: #e2e8f0;
    overflow-x: hidden;
}

/* Hero Header Section */
.video-hero-section {
    background: radial-gradient(circle at 50% 50%, #0c1b33 0%, #060b13 100%);
    padding: 100px 0 80px 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(247, 170, 33, 0.1);
}

.video-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg, rgba(247, 170, 33, 0.05) 0%, transparent 50%, rgba(12, 27, 51, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(247, 170, 33, 0.1);
    border: 1px solid rgba(247, 170, 33, 0.25);
    color: #f7aa21;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.video-hero-title {
    font-size: clamp(34px, 6vw, 50px);
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.video-hero-desc {
    font-size: 15px;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Main Section Container */
.video-main-container {
    background-color: #060b13;
    position: relative;
    z-index: 2;
}

/* Featured Video Showcase Bezel Wrapper */
.featured-video-wrapper {
    max-width: 900px;
    margin: -40px auto 70px auto;
    background: rgba(13, 21, 39, 0.6);
    padding: 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(247, 170, 33, 0.05);
    position: relative;
    z-index: 10;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.featured-video-wrapper:hover {
    border-color: rgba(247, 170, 33, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(247, 170, 33, 0.1);
}

/* Custom Video Box */
.video-custom {
    width: 100%;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background-color: #000;
    aspect-ratio: 16/9;
}

.video-custom .poster-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.video-custom:hover .poster-img {
    transform: scale(1.02);
}

.video-custom video {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

/* Clean Radiating Play Button */
.video-custom .play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f7aa21;
    color: #020914;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(247, 170, 33, 0.5);
    animation: playPulse 2s infinite;
    z-index: 5;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.video-custom .play-btn i {
    margin-left: 4px;
    font-size: 26px;
}

.video-custom .play-btn:hover {
    transform: scale(1.15);
    background-color: #ffffff;
    color: #060b13;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

@keyframes playPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 170, 33, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(247, 170, 33, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(247, 170, 33, 0);
    }
}

.video-custom .pause-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(6, 11, 19, 0.8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-custom .pause-btn:hover {
    background: #f7aa21;
    color: #020914;
    transform: scale(1.1);
    border-color: #f7aa21;
}

/* Sound Control */
.sound-ctrl {
    position: absolute;
    z-index: 5;
    right: 25px;
    bottom: 25px;
    cursor: pointer;
    background: rgba(6, 11, 19, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.sound-ctrl img {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.sound-ctrl .off-button,
.sound-ctrl .on-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sound-ctrl:hover {
    background: rgba(247, 170, 33, 0.9);
    border-color: #f7aa21;
}

.sound-ctrl:hover .off-button,
.sound-ctrl:hover .on-button {
    color: #020914;
}

.sound-ctrl:hover img {
    filter: invert(0);
}

.sound-ctrl .on-button {
    display: none;
}

.soundctrlshow .on-button {
    display: block;
}

.soundctrlshow .off-button {
    display: none;
}

/* Play States */
.playvideo .video-custom .poster-img {
    opacity: 0;
    pointer-events: none;
}

.playvideo .video-custom video {
    opacity: 1;
}

.playvideo .video-custom .play-btn {
    display: none;
}

.playvideo .video-custom .pause-btn,
.playvideo .sound-ctrl {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

/* Secondary Video Tutorials Grid */
.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    letter-spacing: 1.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f7aa21;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(247, 170, 33, 0.6);
}

.tutorial-card {
    background-color: rgba(13, 21, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.tutorial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247, 170, 33, 0.4);
    background-color: rgba(13, 21, 39, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(247, 170, 33, 0.05);
}

.thumb-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background-color: #020b18;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tutorial-card:hover .thumb-wrap img {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 9, 20, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.tutorial-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    width: 54px;
    height: 54px;
    background-color: #f7aa21;
    color: #020914;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(247, 170, 33, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tutorial-card:hover .play-overlay i {
    transform: scale(1.1);
}

.duration-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(6, 11, 19, 0.85);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
}

.card-content {
    padding: 24px;
}

.tutorial-title {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tutorial-card:hover .tutorial-title {
    color: #f7aa21;
}

.tutorial-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Call To Action Box */
.video-cta-block {
    background: linear-gradient(135deg, #0d1e3d 0%, #060b13 100%);
    border: 1px solid rgba(247, 170, 33, 0.15);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.video-cta-block::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(247, 170, 33, 0.05) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.video-cta-title {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.video-cta-desc {
    font-size: 15px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

.video-cta-btn {
    background-color: #f7aa21;
    color: #020914;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(247, 170, 33, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.video-cta-btn:hover {
    background-color: #ffffff;
    color: #060b13;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

#menu-placeholder {
    min-height: 120px;
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    #menu-placeholder {
        min-height: 110px;
    }

    .video-hero-section {
        padding: 70px 0 60px 0;
    }

    .featured-video-wrapper {
        margin-top: -20px;
        margin-bottom: 50px;
        padding: 8px;
        border-radius: 16px;
    }

    .video-custom {
        border-radius: 10px;
    }

    .video-cta-block {
        padding: 40px 20px;
        margin-top: 50px;
    }
}

.video-cta-block {
    padding: 40px 20px;
    margin-top: 50px;
}

/* SEO Guide Section */
.seo-guide-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
}

.seo-card-wrap {
    background-color: rgba(13, 21, 39, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 45px;
    backdrop-filter: blur(10px);
}

.seo-main-title {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}

.seo-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 30px;
}

.seo-sub-title {
    font-size: 18px;
    color: #f7aa21;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    text-transform: none;
}

.seo-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.seo-list {
    padding-left: 20px;
    margin-bottom: 25px;
    color: #cbd5e1;
}

.seo-list li {
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.seo-list strong {
    color: #ffffff;
}

.seo-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.seo-faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.seo-faq-item h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: none;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}

.seo-faq-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0;
}

@media (max-width: 768px) {
    .seo-card-wrap {
        padding: 25px;
    }
    .seo-main-title {
        font-size: 20px;
    }
    .seo-sub-title {
        font-size: 16px;
    }
}

/* Loader Styles */
#loader.loader_main {
    width: 100vw !important;
    height: 100vh !important;
    background: #020914 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Ambient Stadium Light Flares */
#loader.loader_main::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(8, 39, 86, 0.45) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

#loader.loader_main::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(247, 170, 33, 0.12) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

/* Floating Golden Dust Particles */
.dust-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(247, 170, 33, 0.15) 1.2px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.7;
    animation: driftDust 20s linear infinite;
    pointer-events: none;
}

@keyframes driftDust {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-40px) rotate(5deg);
    }
}

/* Centered Immersive Content Container */
.loader-immersive-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* 3D Gold Orbit & Cricket Ball Spinner */
.ball-3d-stage {
    position: relative;
    width: clamp(120px, 25vh, 160px) !important;
    height: clamp(120px, 25vh, 160px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
    margin-bottom: clamp(15px, 4vh, 30px);
}

.glowing-orbit {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(247, 170, 33, 0.1);
    border-top: 2px solid #f7aa21;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(247, 170, 33, 0.2);
    animation: rotateOrbit 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.ball-sphere {
    width: clamp(48px, 10vh, 64px) !important;
    height: clamp(48px, 10vh, 64px) !important;
    background: radial-gradient(circle at 25px 25px, #ef4444 0%, #991b1b 60%, #450a0a 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.35), inset -4px -4px 10px rgba(0, 0, 0, 0.6);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotating Ball Seam */
.ball-seam {
    position: absolute;
    width: 100%;
    height: 4px;
    border-top: 2px dashed rgba(255, 255, 255, 0.7);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    animation: spinBall 3s linear infinite;
}

@keyframes rotateOrbit {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes spinBall {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Premium Typography */
.brand-heavy {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 5vw, 38px) !important;
    font-weight: 700;
    letter-spacing: clamp(3px, 1vw, 6px);
    text-transform: uppercase;
    margin: 10px 0 8px 0;
    background: linear-gradient(135deg, #ffffff 30%, #f7aa21 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.brand-heavy span {
    -webkit-text-fill-color: initial;
    color: #f7aa21;
}

/* Cycling Status console */
.terminal-status {
    font-size: clamp(10px, 2vw, 12px) !important;
    color: #f7aa21;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: clamp(15px, 4vh, 25px);
    font-weight: 600;
    height: 18px;
    text-align: center;
    opacity: 0.85;
}

/* Glow progress runner */
.premium-track {
    width: min(200px, 70vw) !important;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.premium-fill {
    height: 100%;
    background: linear-gradient(90deg, transparent, #f7aa21, #ffffff, #f7aa21, transparent);
    width: 60%;
    position: absolute;
    animation: slideGlow 1.6s ease-in-out infinite;
}

@keyframes slideGlow {
    0% {
        left: -60%;
    }

    100% {
        left: 100%;
    }
}

/* Small corporate footer signature */
.loader-footer-sig {
    position: absolute;
    bottom: 30px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
}
