:root {
    --primary-color: #002b5e; /* MSB Navy */
    --accent-color: #f26c27;  /* MSB Orange */
    --accent-hover: #d95b1e;
    --bg-dark: #0a0f18;
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 1;
}

.glass-panel:hover::before {
    left: 150%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 15, 24, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}
.msb-brand { color: var(--text-light); }
.msb-branch { color: var(--accent-color); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn-primary {
    background: var(--accent-color);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 108, 39, 0.4);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
}
.full-width { width: 100%; }
.mt-15 { margin-top: 15px; }

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 50%;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight { color: var(--accent-color); }

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 450px;
}

.hero-image {
    position: relative;
    max-width: 45%;
    z-index: 1;
}

.floating-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}



/* Sections */
section {
    padding: 6rem 8%;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}.glass-orb {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.6;
    z-index: -1;
}/* Jobs Grid */
.job-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Horizontal Scroll Mode (Dành cho GSAP trên Desktop) */
.job-card-container.horizontal-mode {
    display: flex;
    flex-wrap: nowrap;
    width: max-content; /* Mở rộng chiều dài vô tận */
    gap: 4rem;
    padding: 2rem 5vw; /* Cách đều 2 mép */
}

.job-card-container.horizontal-mode .job-card {
    width: 450px; /* Cố định kích thước thẻ khi vuốt ngang */
    flex-shrink: 0;
}

.job-card {
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s, border-color 0.4s;
    cursor: pointer;
    z-index: 2;
}

.job-card:hover {
    transform: translateY(-10px);
    border-color: rgba(242, 108, 39, 0.6);
    box-shadow: 0 10px 40px rgba(242, 108, 39, 0.2), 0 0 15px rgba(242, 108, 39, 0.1) inset;
}

/* Particles */
.particles-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: #ffb84d; /* Màu sáng hơn một chút so với accent-color gốc */
    border-radius: 50%;
    opacity: 0.6; /* Tăng độ sáng cơ bản */
    animation: rise 10s infinite linear;
    box-shadow: 0 0 15px #ffb84d, 0 0 30px var(--accent-color); /* Cường độ phát sáng mạnh hơn */
}

@keyframes rise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 0.9; } /* Tăng độ sáng tối đa khi ở giữa */
    100% { transform: translateY(-100px) scale(1.8); opacity: 0; }
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-header h3 {
    font-size: 1.3rem;
    color: #fff;
    max-width: 80%;
}

.badge {
    background: rgba(242, 108, 39, 0.2);
    color: var(--accent-color);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid var(--accent-color);
}

.job-meta {
    list-style: none;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================================
   CINEMATIC DARK MODE (MICHAEL's LANDING PAGE)
   ========================================================= */
:root {
    --cinema-bg: #050505;
    --cinema-gold: #D4AF37;
    --cinema-gold-glow: rgba(212, 175, 55, 0.5);
    --cinema-text: #EAEAEA;
    --cinema-muted: #888888;
}

body.cinematic-mode {
    background-color: var(--cinema-bg);
    color: var(--cinema-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Typography */
.cinematic-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #FFFFFF 0%, #777777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cinematic-title .gold-accent {
    background: linear-gradient(180deg, #F9D423 0%, #FF4E50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(249, 212, 35, 0.4);
}

.cinematic-subtitle {
    font-size: 1.2rem;
    color: var(--cinema-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sections */
.cinema-hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.spline-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; /* Đưa nền ra sau nội dung */
    pointer-events: auto; /* Cho phép tương tác chuột với hạt ánh sáng */
}

.spline-container spline-viewer, .spline-container canvas {
    width: 100%;
    height: 100%;
    pointer-events: auto; /* Cho phép tương tác */
}

/* Overlay gradient để text hiển thị rõ hơn trên nền 3D */
.cinema-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--cinema-bg) 80%);
    pointer-events: none;
    z-index: 1;
}

.cinema-content-wrapper {
    position: relative;
    z-index: 2; /* Đưa nội dung lên trên Spline và Overlay */
    pointer-events: none; /* Cho phép click xuyên qua phần trống */
}

.cinema-content-wrapper > * {
    pointer-events: auto; /* Click vào text/button được */
}

/* Nút CTA mạ vàng */
.btn-gold {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: linear-gradient(45deg, #FF4E50, #F9D423);
    color: #111;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--cinema-gold-glow);
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(249, 212, 35, 0.6);
}

/* Info Section */
.cinema-info {
    padding: 100px 5%;
    background-color: var(--cinema-bg);
    position: relative;
    z-index: 10;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 212, 35, 0.3);
}

.info-card h3 {
    color: var(--cinema-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--cinema-muted);
    line-height: 1.7;
}

.cinematic-portrait {
    margin-top: 30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.6);
    filter: grayscale(80%) contrast(120%);
    transition: all 0.5s ease;
}

.cinematic-portrait:hover {
    filter: grayscale(0%) contrast(100%);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cinematic-title { font-size: 3rem; }
    .cinema-subtitle { font-size: 1rem; padding: 0 20px; }
}
.job-meta li { margin-bottom: 0.3rem; }

.job-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Story Section */
.story-content {
    padding: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
.story-content:not(.story-split) {
    max-width: 850px;
}
.story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}
.story-content p {
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    text-align: left;
}
.story-content p[style*="margin-top: 15px"] {
    margin-top: 10px !important;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2.5rem;
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal.active { display: flex; }
.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-muted);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.close-btn:hover { color: #fff; }

.subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.input-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ddd;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.hidden { display: none !important; }

#successMessage {
    text-align: center;
    padding: 1rem 0;
}
.check-icon {
    font-size: 3rem;
    color: #f26c27;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* GSAP Reveal Base */
.gsap-reveal {
    visibility: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }
    .hero-content, .hero-image { max-width: 100%; }
    .hero-image { margin-top: 3rem; }
    .nav-links { display: none; }
}



/* SPLASH SCREEN STYLES FROM LOGO ANIMATION V2 */

        #splash-screen { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999; overflow:hidden;
            margin: 0; padding: 0; width: 100%; height: 100%;
            background: #06090f; /* Base nền */
            display: flex; justify-content: center; align-items: center;
            font-family: 'Segoe UI', Tahoma, sans-serif;
            overflow: hidden;
            perspective: 1500px;
        }
        
        /* Canvas bụi vàng nằm độc lập lớp dưới cùng */
        #bg-canvas {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
            background: radial-gradient(circle at center, #1b212f 0%, #06090f 100%);
        }
        
        .logo-fill { fill: url(#gold-grad); } 
        
        .glow-target {
            transition: filter 1.5s ease-out;
            filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.6));
            transform-style: preserve-3d;
        }

        #splash-screen.super-glow .glow-target {
            filter: drop-shadow(0px 0px 30px rgba(255, 220, 140, 1)) drop-shadow(0px 0px 60px rgba(255, 200, 100, 0.8)) brightness(1.6) blur(2px) !important;
        }
        
        #splash-screen.premium-finish .glow-target {
            filter: drop-shadow(0px 8px 15px rgba(0,0,0,0.8)) drop-shadow(0px 0px 18px rgba(227, 203, 165, 0.5)) brightness(1.1) blur(0px) !important;
        }

        #scene-wrapper {
            position: absolute;
            width: 100%; height: 100%;
            display: flex; justify-content: center; align-items: center;
            transform-style: preserve-3d;
            z-index: 10;
        }
        
        #scene {
            position: relative;
            width: 1000px; height: 600px;
            transform-style: preserve-3d;
        }

        #logo-group {
            position: absolute;
            top: 50%; left: 50%;
            width: 0px; height: 0px; 
            z-index: 10;
            transform-style: preserve-3d;
        }

        /* 
           TÙY CHỈNH TỌA ĐỘ THEO YÊU CẦU:
           - Khung rộng cố định góc dẹp 150px, Cánh cao vút 600px
           - Khép khe hở = 5px
           - La bàn width = 22px, cao phá chóp 720px (đâm thẳng lên trời)
        */
        #compass {
            position: absolute; top: -360px; left: -11px;
            width: 22px; height: 720px;
            transform: translateZ(20px);
        }
        #wing-left {
            position: absolute; top: -300px; left: -75px;
            width: 59px; height: 600px;
            transform: translateZ(10px);
        }
        #wing-right {
            position: absolute; top: -300px; left: 16px;
            width: 59px; height: 600px;
            transform: translateZ(10px);
        }
        
        #texts-container {
            position: absolute; top: 50%; left: 50%;
            width: 500px; transform: translateY(-50%) translateZ(15px);
            margin-left: 0px; display: flex; flex-direction: column;
            align-items: flex-start; gap: 12px; z-index: 5;
        }

        .text-wrap {
            overflow: hidden; position: relative; width: 100%;
        }
        #tx-michael { width: 450px; height: auto; }
        #tx-live { width: 230px; height: auto; opacity: 0.85; margin-left: 2px; }

        .lightning-bg {
            position: fixed; top: 0; left: 0; right: 0; bottom: 0;
            background: white; opacity: 0; pointer-events: none;
            mix-blend-mode: overlay; z-index: 99;
        }
        
        .lightning-bolt {
            position: absolute; width: 40px; height: 40px;
            opacity: 0; filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #8eb9ff) brightness(1.5);
            z-index: 15; mix-blend-mode: screen; transform: translateZ(40px);
        }
        
        #overlay-start {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.85); z-index: 9999;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            backdrop-filter: blur(10px); transition: opacity 0.5s;
        }
        
        .start-btn {
            padding: 15px 40px; border-radius: 40px; background: linear-gradient(90deg, #E3CBA5 0%, #c4a16f 100%);
            border: none; font-weight: bold; font-size: 18px; cursor: pointer; color: #111;
            box-shadow: 0 10px 30px rgba(227, 203, 165, 0.4); transition: transform 0.3s, box-shadow 0.3s;
            text-transform: uppercase; letter-spacing: 2px;
        }
        .start-btn:hover {
            transform: scale(1.05) translateY(-5px); box-shadow: 0 15px 40px rgba(227, 203, 165, 0.6);
        }
        .hint { margin-top: 15px; color: #E3CBA5; font-size: 14px; opacity: 0.7; letter-spacing: 1px; }

        #btn-replay {
            position: fixed; bottom: 30px; right: 30px;
            padding: 10px 25px; border-radius: 30px; background: rgba(255,255,255,0.1);
            border: 1px solid rgba(227, 203, 165, 0.4); font-weight: 600; cursor: pointer; color: #E3CBA5;
            z-index: 1000; transition: all 0.3s; opacity: 0; pointer-events: none;
            backdrop-filter: blur(5px);
        }
        #btn-replay:hover { background: rgba(227, 203, 165, 0.2); transform: scale(1.05); }
    
/* Swiper Custom Styles */
/* Swiper Custom Styles & Navigation Bar at Top */
.story-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
}
.story-controls .swiper-button-prev,
.story-controls .swiper-button-next {
    position: static !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.story-controls .swiper-button-prev:hover,
.story-controls .swiper-button-next:hover {
    background: var(--accent-color);
    color: #fff !important;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(242, 108, 39, 0.4);
}
.story-controls .swiper-button-prev::after,
.story-controls .swiper-button-next::after {
    font-size: 1.1rem !important;
    font-weight: bold;
}
.story-controls .swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    gap: 8px;
    align-items: center;
}

.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Story Layout for Split View */
.story-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
.story-image {
    flex: 0 0 35%;
    display: flex;
    justify-content: center;
}
.story-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.story-text-content {
    flex: 1;
}

@media (max-width: 768px) {
    .story-split {
        flex-direction: column;
    }
    .story-image {
        flex: 1 1 100%;
        width: 100%;
    }
}
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
    opacity: 1;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* =========================================================
   CINEMATIC INTRO (AUTOPLAY SEQUENCE)
   ========================================================= */
#cinematic-container {
    width: 100vw;
    height: 100dvh; /* Sử dụng dvh để bao phủ toàn bộ màn hình trên mobile */
    background: #000; /* Đen tuyệt đối */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    touch-action: none; /* Ngăn chặn vuốt màn hình trên mobile */
}

.cinema-section {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.outfit-font {
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

#typing-text {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 300;
    color: var(--text-light);
    white-space: nowrap; /* Mặc định 1 dòng trên PC */
    line-height: 1.5;
    padding: 0 20px;
}

#explosion-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem); /* Tự động thu nhỏ trên điện thoại */
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    #typing-text {
        font-size: 1.6rem; /* Chữ to hơn trên điện thoại */
        white-space: normal; /* Cho phép xuống dòng tự nhiên */
    }
    #explosion-text {
        font-size: 2rem; /* Giảm kích thước vụ nổ trên điện thoại */
    }
}

.highlight-text {
    /* Hiệu ứng mạ vàng kim loại phản quang cực mạnh (Gold Shimmer WOW) */
    background: linear-gradient(
        110deg,
        #E8C689 0%,
        #FFFFFF 20%,
        #F9D423 40%,
        #F97316 60%,
        #E8C689 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: goldShine 2s linear infinite;
    text-shadow: 0px 0px 30px rgba(249, 212, 35, 0.6);
}

.blinking-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: var(--accent-color); /* Trỏ nhấp nháy màu cam điểm nhấn */
    animation: blink 1s step-end infinite;
    margin-left: 5px;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Ẩn thanh cuộn trong lúc xem intro nếu cần */
body.no-scroll {
    overflow: hidden;
}

/* =========================================================
   CUSTOM GLOWING CURSOR (GSAP Pro Max)
   ========================================================= */
body.custom-cursor-active {
    cursor: none; /* Ẩn trỏ chuột mặc định khi được kích hoạt trên PC */
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    box-shadow: 0 0 20px 5px rgba(249, 115, 22, 0.6);
    pointer-events: none; /* Tránh cản trở thao tác click */
    z-index: 10000;
    transform: translate(-50%, -50%); /* Căn giữa lõi chuột */
    mix-blend-mode: screen;
    opacity: 0; /* Mặc định ẩn, JS sẽ hiện lên nếu dùng chuột (không phải chạm cảm ứng) */
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

/* Hiệu ứng khi Hover qua nút */
.custom-cursor.hover-active {
    width: 50px;
    height: 50px;
    background-color: rgba(249, 115, 22, 0.2);
    border: 1px solid var(--accent-color);
    box-shadow: none;
    mix-blend-mode: normal;
}

/* =========================================================
   SCRUB TEXT REVEAL
   ========================================================= */
.quote-section {
    padding: 120px 20px;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.scrub-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 5vw, 3.2rem); /* Nhỏ hơn xíu trên mobile để đỡ ngộp */
    line-height: 1.4;
    max-width: 900px;
    text-align: center;
    font-weight: 700;
    margin: 0 auto;
}

.scrub-text span {
    display: inline-block; /* Giúp các từ không bị dính sát vào nhau khi xuống dòng */
    margin-right: 0.2em; /* Khoảng cách giữa các từ */
}

/* =========================================================
   DESIGNER SIGNATURE (GOLD SHIMMER EFFECT)
   ========================================================= */
.designer-signature {
    text-align: right;
    max-width: 500px;
    margin: 25px auto 0 auto;
    font-size: 0.8rem;
    font-style: italic;
    letter-spacing: 1.5px;
    font-weight: 800;
    font-family: 'Inter', sans-serif; /* Đổi sang Inter để hỗ trợ tiếng Việt mượt mà */
    
    /* Hiệu ứng mạ vàng kim loại phản quang */
    background: linear-gradient(
        110deg,
        #E8C689 0%,
        #FFFFFF 20%,
        #F9D423 40%,
        #F97316 60%,
        #E8C689 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: goldShine 2s linear infinite;
    text-shadow: 0px 0px 20px rgba(249, 115, 22, 0.6);
}

@keyframes goldShine {
    to {
        background-position: -200% center;
    }
}
