/* CSS Custom Properties */
:root {
    --primary-red: #ff0000;
    --dark-red: #cc0000;
    --light-red: #ff3333;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --shadow: rgba(220, 20, 60, 0.1);
    --sidebar-width: 280px;
    --header-height: 150px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==================== Password Protection Screen ==================== */
.password-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.password-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 40px;
    padding-bottom: 50px;
}

.password-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    animation: fadeInDown 1s ease-out;
}

.password-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 10;
}

.password-input-container {
    position: relative;
    width: 400px;
    max-width: 90vw;
}

.password-input {
    width: 100%;
    padding: 18px 60px 18px 25px;
    font-size: 16px;
    border: 1px solid var(--primary-red);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.password-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(255, 0, 0, 0.1);
}

.paste-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 8px;
    color: white;
}

.paste-button:hover {
    background-color: var(--dark-red);
    transform: translateY(-50%) scale(1.05);
}

.paste-button:active {
    transform: translateY(-50%) scale(0.95);
}

.paste-button svg {
    width: 20px;
    height: 20px;
}

.password-submit {
    padding: 15px 60px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.password-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.password-submit:active {
    transform: translateY(0);
}

.security-message {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    font-style: italic;
    max-width: 400px;
}

.password-error {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 500;
    min-height: 20px;
    animation: shake 0.5s ease;
    text-align: center;
}

/* Mobile Device Warning */
.mobile-device-warning {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary-red);
    max-width: 500px;
    width: 90%;
    position: relative;
    z-index: 10;
    animation: fadeInScale 0.8s ease-out both;
}

.desktop-icon {
    width: 100px;
    height: 100px;
    color: var(--primary-red);
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(255, 0, 0, 0.2));
}

.desktop-icon svg {
    width: 100%;
    height: 100%;
}

.mobile-warning-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.2;
}

.mobile-warning-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 400px;
}

.device-icons {
    display: flex;
    gap: 20px;
    font-size: 36px;
    margin-top: 10px;
}

.device-icons span {
    animation: bounce 2s ease-in-out infinite;
    display: inline-block;
}

.device-icons span:nth-child(2) {
    animation-delay: 0.2s;
}

.device-icons span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

/* No Photo Warning */
.no-photo-warning {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-red);
    z-index: 20;
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.camera-forbidden-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.camera-forbidden-icon svg {
    width: 100%;
    height: 100%;
}

.no-photo-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Welcome Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/logx.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(10px);
    transform: scale(1.1); /* Prevent blur edges from showing */
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 10002;
    animation: scaleIn 0.4s ease;
}

.welcome-video {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 16px;
    border: 3px solid var(--primary-red);
    box-shadow: 
        0 0 10px var(--primary-red),
        0 0 20px var(--primary-red),
        0 0 30px var(--primary-red),
        0 0 40px var(--primary-red),
        0 20px 60px rgba(0, 0, 0, 0.5);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% {
        box-shadow: 
            0 0 10px var(--primary-red),
            0 0 20px var(--primary-red),
            0 0 30px var(--primary-red),
            0 0 40px var(--primary-red),
            0 20px 60px rgba(0, 0, 0, 0.5);
        border-color: var(--primary-red);
    }
    100% {
        box-shadow: 
            0 0 20px var(--primary-red),
            0 0 30px var(--primary-red),
            0 0 40px var(--primary-red),
            0 0 60px var(--primary-red),
            0 0 80px rgba(255, 0, 0, 0.8),
            0 20px 60px rgba(0, 0, 0, 0.5);
        border-color: var(--light-red);
    }
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background-color: var(--white);
    color: var(--text-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: rotate(90deg);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Hide main website initially */
.main-website {
    display: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-image: url('../assets/images/wavy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 10px var(--shadow);
    border-bottom: 1px solid #ff0000;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sec-logo-container {
    display: flex;
    align-items: center;
}

.sec-logo {
    height: 135px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    z-index: 1001;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.language-button:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25);
    transform: translateY(-2px);
}

.language-button.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--dark-red);
}

.flag-icon {
    width: 24px;
    height: 18px;
    display: inline-block;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.language-text {
    font-size: 15px;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.language-button.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.language-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--off-white);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--off-white);
    color: var(--primary-red);
}

.language-option.active {
    background: rgba(255, 0, 0, 0.1);
    color: var(--primary-red);
    font-weight: 600;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 1px;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background-color: var(--primary-red);
    padding: 26px 0 0 0;
    z-index: 999;
    box-shadow: 4px 0 15px var(--shadow);
    display: flex;
    flex-direction: column;
}

.nav-list {
    list-style: none;
    padding: 0;
    flex: 1;
    overflow-y: auto;
}

.nav-list li {
    margin-bottom: 3px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 13px 30px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.nav-link:hover {
    background-color: var(--dark-red);
    border-left-color: var(--white);
    padding-left: 40px;
}

.nav-link.active {
    background-color: var(--white);
    color: var(--primary-red);
    border-left-color: var(--primary-red);
    font-weight: 600;
    border-radius: 15px 0 0 15px;
}

.nav-number {
    font-size: 24px;
    font-weight: 700;
    opacity: 0.8;
}

.nav-text {
    font-size: 16px;
    font-weight: 500;
}


/* QR Code Section */
.qr-code-container {
    padding: 30px;
    text-align: center;
    margin-top: auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.qr-code {
    width: 150px;
    height: 150px;
    background-color: var(--white);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

.qr-text {
    color: var(--white);
    font-size: 14px;
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    margin-top: var(--header-height);
    padding: 0;
}

.content-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    border-bottom: 1px solid #E0E0E0;
}

.content-section:nth-child(even) {
    background-color: var(--off-white);
}

.section-content {
    max-width: 1000px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Text Content */
.text-content {
    margin-bottom: 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
}

/* Video Container */
.video-container {
    width: 100%;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.3);
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
}

/* Business Plan — crypto access intro above main BP title */
.business-plan-intro {
    margin-bottom: 48px;
}

.business-plan-intro-block {
    margin-bottom: 40px;
}

.business-plan-intro-block:last-child {
    margin-bottom: 0;
}

.bp-intro-step {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin: 0 0 12px;
    opacity: 0.9;
}

.bp-intro-product-title {
    margin-top: 0;
}

.bp-intro-image-wrap {
    margin-top: 24px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background: #0a0a0a;
}

.bp-intro-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Text-Based Sections */
.text-sections-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.text-section-block {
    margin-bottom: 40px;
}

.text-section-block:last-child {
    margin-bottom: 0;
}

.text-block-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-block-title::before {
    content: '';
    width: 6px;
    height: 30px;
    background-color: var(--primary-red);
    border-radius: 3px;
}

.text-block-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.text-block-content p {
    margin-bottom: 15px;
}

.text-block-content strong {
    color: var(--primary-red);
    font-weight: 600;
}

.text-block-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.text-block-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.text-block-list li::before {
    content: '●';
    position: absolute;
    left: 10px;
    color: var(--primary-red);
    font-size: 20px;
    line-height: 1.7;
}

.text-block-list li strong {
    color: var(--primary-red);
    font-weight: 600;
}

.highlight-box {
    background-color: rgba(255, 0, 0, 0.05);
    border-left: 4px solid var(--primary-red);
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
}

.highlight-box p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.highlight-box strong {
    color: var(--primary-red);
    font-weight: 700;
}

/* Market Stats Grid */
.market-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.market-stat-card {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-red);
    transition: transform 0.3s ease;
}

.market-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
    line-height: 1;
}

.green-number {
    color: #00c853;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.stat-source {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

/* Line Chart Container */
.chart-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

.line-chart-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.chart-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

.chart-legend {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.crypto {
    background-color: #ff6b6b;
}

.legend-dot.banking {
    background-color: #4ecdc4;
}

.legend-dot.total {
    background-color: var(--primary-red);
}

.line-chart {
    display: flex;
    gap: 20px;
    height: 350px;
    position: relative;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
    padding: 10px 10px 30px 0;
}

.chart-area {
    flex: 1;
    position: relative;
    border-left: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 30px;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 19.8%,
        #f0f0f0 19.8%,
        #f0f0f0 20%
    );
}

.chart-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 30px);
}

.chart-line {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.crypto-line {
    stroke: #ff6b6b;
    opacity: 0.7;
}

.banking-line {
    stroke: #4ecdc4;
    opacity: 0.7;
}

.total-line {
    stroke: var(--primary-red);
    stroke-width: 4;
}

.chart-point {
    fill: white;
    stroke: var(--primary-red);
    stroke-width: 2;
}

.chart-labels {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    display: flex;
    justify-content: space-between;
}

.chart-label-group {
    position: absolute;
    transform: translateX(-50%);
    text-align: center;
}

.year-label {
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 3px;
}

.value-label {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 700;
}

/* Projection Details */
.projection-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.projection-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-red);
}

.projection-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.projection-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.breakdown-item span:first-child {
    color: var(--text-dark);
    flex: 1;
}

.breakdown-value {
    font-weight: 600;
    color: var(--primary-red);
    margin-left: 15px;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 0 0;
    margin-top: 10px;
    border-top: 2px solid var(--primary-red);
    font-size: 16px;
}

/* Pie Chart */
.charts-row {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.pie-chart-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    justify-content: center;
}

.pie-chart {
    width: 350px;
    height: 350px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.pie-slice {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: 200px 200px;
    cursor: pointer;
}

.pie-slice:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pie-legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.pie-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.pie-label {
    flex: 1;
    color: var(--text-dark);
    font-weight: 500;
}

.pie-value {
    color: var(--primary-red);
    font-weight: 600;
}

/* Bar Chart */
.bar-chart-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
}

.bar-chart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.bar-chart-item:hover {
    background-color: #f8f9fa;
}

.bar-chart-item.highlighted {
    background-color: rgba(255, 0, 0, 0.05);
    border-left: 4px solid var(--primary-red);
    padding-left: 16px;
}

.bar-label {
    min-width: 150px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.bar-wrapper {
    flex: 1;
    height: 45px;
    background-color: #f0f0f0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    border-radius: 8px;
    transition: width 1.5s ease;
    position: relative;
}

.binance-bar {
    background: linear-gradient(90deg, #f3ba2f 0%, #f0b90b 100%);
}

.coinbase-bar {
    background: linear-gradient(90deg, #0052ff 0%, #0041cc 100%);
}

.kraken-bar {
    background: linear-gradient(90deg, #5741d9 0%, #4229b8 100%);
}

.bitbank-bar {
    background: linear-gradient(90deg, #ff0000 0%, #cc0000 100%);
}

.bitbank-bar-future {
    background: linear-gradient(90deg, #ff6b6b 0%, #ff0000 100%);
}

.bar-value {
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.chart-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.05);
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
}

.chart-note p {
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Area Chart */
.area-chart-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
}

.area-chart {
    display: flex;
    gap: 20px;
    height: 350px;
}

.area-chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-light);
    padding: 10px 10px 40px 0;
}

.area-chart-content {
    flex: 1;
    position: relative;
    border-left: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.area-chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 16.4%,
        #f0f0f0 16.4%,
        #f0f0f0 16.6%
    );
}

.area-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
}

.area-chart-x-axis {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.area-chart-x-axis span {
    font-size: 12px;
    color: var(--text-dark);
    text-align: center;
}

.area-chart-x-axis strong {
    color: var(--primary-red);
    font-size: 14px;
}

.area-legend {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.area-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.area-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.total-revenue-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.total-label {
    font-size: 20px;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-amount {
    font-size: 56px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.total-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 15px 0 0 0;
    font-style: italic;
}

/* Income Source Items */
.income-source-item {
    background: white;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.income-source-item:hover {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.15);
    transform: translateX(5px);
}

.income-source-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.income-source-desc {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* KPI Grid */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.kpi-card {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.kpi-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
    line-height: 1;
}

.kpi-label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bitcoin-icon {
    width: 60px;
    height: 60px;
    display: inline-block;
    vertical-align: middle;
    animation: bitcoinSpin 3s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(247, 147, 26, 0.4));
}

@keyframes bitcoinSpin {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Forecast Section Styles */
.forecast-item {
    background: white;
    padding: 30px;
    margin-bottom: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-red);
}

.forecast-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.forecast-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.forecast-chart-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.forecast-stat-box {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 35px 45px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.forecast-stat-box.highlighted {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-top-color: var(--light-red);
}

.forecast-stat-box.highlighted .forecast-stat-number {
    color: white;
}

.forecast-stat-box.highlighted .forecast-stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.forecast-stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
}

.forecast-stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 12px;
    line-height: 1;
}

.forecast-stat-label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Stock Shares Chart Styles */
.stock-line {
    stroke: #4a90e2;
    stroke-width: 4;
}

.stock-point {
    fill: white;
    stroke: #4a90e2;
    stroke-width: 3;
}

.stock-highlight {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #4a90e2 !important;
}

/* BBC Chart Styles */
.bbc-line {
    stroke: var(--primary-red);
    stroke-width: 4;
}

.bbc-point {
    fill: white;
    stroke: var(--primary-red);
    stroke-width: 3;
}

.release-label {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 3px;
    font-style: italic;
}

.bbc-highlight {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--primary-red) !important;
}

/* Bitcoin Value Box */
.bitcoin-value-box {
    background: linear-gradient(135deg, #f7931a 0%, #e88b15 100%);
    padding: 50px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 10px 40px rgba(247, 147, 26, 0.3);
}

.bitcoin-mega-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bitcoin-mega-icon {
    width: 120px;
    height: 120px;
    animation: bitcoinFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

@keyframes bitcoinFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateY(180deg);
    }
}

.bitcoin-mega-details {
    text-align: center;
    color: white;
}

.bitcoin-mega-number {
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.bitcoin-mega-label {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bitcoin-mega-value {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.bitcoin-price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price-change-icon {
    font-size: 0;
    display: inline-block;
    line-height: 1;
    width: 0;
    height: 0;
    vertical-align: middle;
    margin-right: 8px;
}

.price-change-icon.up {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #00ff00;
    border-top: 0;
}

.price-change-icon.down {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #ff0000;
    border-bottom: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes priceFlashGreen {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 255, 0, 0));
    }
    50% {
        transform: scale(1.4);
        filter: drop-shadow(0 0 15px rgba(0, 255, 0, 0.8));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 255, 0, 0));
    }
}

@keyframes priceFlashRed {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 0, 0, 0));
    }
    50% {
        transform: scale(1.4);
        filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 0, 0, 0));
    }
}

@keyframes priceFlashGreenBig {
    0% {
        background-color: rgba(0, 255, 0, 0);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
    50% {
        background-color: rgba(0, 255, 0, 0.4);
        transform: scale(1.08);
        box-shadow: 0 0 30px 15px rgba(0, 255, 0, 0.3);
    }
    100% {
        background-color: rgba(0, 255, 0, 0);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

@keyframes priceFlashRedBig {
    0% {
        background-color: rgba(255, 0, 0, 0);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
    50% {
        background-color: rgba(255, 0, 0, 0.4);
        transform: scale(1.08);
        box-shadow: 0 0 30px 15px rgba(255, 0, 0, 0.3);
    }
    100% {
        background-color: rgba(255, 0, 0, 0);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    :root {
        --sidebar-width: 220px;
    }

    .nav-link {
        padding: 18px 20px;
    }

    .nav-number {
        font-size: 20px;
    }

    .nav-text {
        font-size: 14px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --sidebar-width: 0px;
        --header-height: 120px;
    }

    .header {
        padding: 0 20px;
    }

    .brand-name {
        font-size: 24px;
    }

    .logo {
        height: 80px;
    }

    .sec-logo {
        height: 101px;
    }

    .header-right {
        gap: 10px;
    }

    .language-button {
        padding: 8px 12px;
        font-size: 14px;
    }

    .language-text {
        font-size: 13px;
    }

    .flag-icon {
        width: 20px;
        height: 15px;
    }

    .language-dropdown-menu {
        right: 0;
        min-width: 140px;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        padding: 20px 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .nav-list {
        display: flex;
        overflow-x: auto;
        padding: 0 20px;
        gap: 10px;
    }

    .nav-list li {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .nav-link {
        flex-direction: column;
        gap: 4px;
        padding: 12px 18px;
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
        min-width: 120px;
    }

    .nav-link:hover {
        padding-left: 20px;
        border-left: none;
        border-bottom-color: var(--white);
    }

    .nav-link.active {
        border-left: none;
        border-bottom-color: var(--primary-red);
    }

    .nav-number {
        font-size: 18px;
    }

    .nav-text {
        font-size: 12px;
    }

    .main-content {
        margin-left: 0;
        margin-top: 0;
    }

    .content-section {
        padding: 40px 20px;
        min-height: auto;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .text-content {
        margin-bottom: 30px;
    }

    .qr-code-container {
        width: 100%;
        padding: 20px;
        border-top: none;
        border-left: 2px solid rgba(255, 255, 255, 0.2);
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }

    .qr-text {
        font-size: 12px;
        margin-top: 10px;
    }

    .text-sections-container {
        padding: 35px;
    }

    .text-block-title {
        font-size: 22px;
    }

    .text-block-content {
        font-size: 15px;
    }

    .text-block-list li {
        font-size: 15px;
    }

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

    .stat-number {
        font-size: 42px;
    }

    .line-chart {
        height: 300px;
    }

    .total-amount {
        font-size: 48px;
    }

    .kpi-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pie-chart-container {
        padding: 35px;
    }

    .pie-chart {
        width: 300px;
        height: 300px;
    }

    .bar-label {
        min-width: 120px;
    }

    .area-chart {
        height: 300px;
    }

    .footer {
        margin-left: 0;
        padding: 30px 20px;
    }

    .footer-copyright {
        font-size: 14px;
    }

    .footer-tagline {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 0 15px;
    }

    .brand-name {
        font-size: 20px;
    }

    .sec-logo {
        height: 79px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .nav-list {
        padding: 0 10px;
    }

    .nav-link {
        padding: 12px 15px;
        min-width: 100px;
    }

    .qr-code {
        width: 80px;
        height: 80px;
    }

    .text-sections-container {
        padding: 30px 20px;
    }

    .text-block-title {
        font-size: 20px;
    }

    .text-block-title::before {
        width: 4px;
        height: 24px;
    }

    .text-block-content {
        font-size: 15px;
    }

    .text-block-list li {
        font-size: 15px;
        padding-left: 30px;
    }

    .highlight-box p {
        font-size: 15px;
    }

    .market-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .line-chart-container {
        padding: 20px;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .chart-title {
        font-size: 16px;
    }

    .line-chart {
        height: 250px;
    }

    .chart-y-axis {
        font-size: 10px;
    }

    .year-label {
        font-size: 10px;
    }

    .value-label {
        font-size: 11px;
    }

    .projection-details {
        grid-template-columns: 1fr;
    }

    .projection-title {
        font-size: 18px;
    }

    .breakdown-item {
        font-size: 13px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .breakdown-value {
        margin-left: 0;
    }

    .total-revenue-box {
        padding: 30px 20px;
    }

    .total-label {
        font-size: 16px;
    }

    .total-amount {
        font-size: 40px;
    }

    .total-note {
        font-size: 12px;
    }

    .income-source-item {
        padding: 18px 20px;
    }

    .income-source-title {
        font-size: 16px;
    }

    .income-source-desc {
        font-size: 14px;
    }

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

    .kpi-card {
        padding: 25px 15px;
    }

    .kpi-number {
        font-size: 32px;
    }

    .kpi-label {
        font-size: 12px;
    }

    .pie-chart-container {
        flex-direction: column;
        padding: 25px;
        gap: 30px;
    }

    .pie-chart {
        width: 280px;
        height: 280px;
    }

    .bar-chart-container {
        padding: 20px;
    }

    .bar-label {
        min-width: 100px;
        font-size: 13px;
    }

    .bar-wrapper {
        height: 35px;
    }

    .bar-value {
        font-size: 12px;
        padding-right: 10px;
    }

    .chart-note {
        padding: 15px;
    }

    .chart-note p {
        font-size: 13px;
    }

    .area-chart-container {
        padding: 20px;
    }

    .area-chart {
        height: 250px;
    }

    .area-chart-y-axis {
        font-size: 10px;
    }

    .area-chart-x-axis span {
        font-size: 10px;
    }

    .area-chart-x-axis strong {
        font-size: 11px;
    }

    .footer {
        padding: 25px 15px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-tagline {
        font-size: 11px;
    }

    /* Password Screen Responsive */
    .password-logo {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }

    .password-input-container {
        width: 90%;
    }

    .password-input {
        padding: 15px 55px 15px 20px;
        font-size: 14px;
    }

    .paste-button {
        width: 35px;
        height: 35px;
        right: 6px;
    }

    .paste-button svg {
        width: 18px;
        height: 18px;
    }

    .password-submit {
        padding: 12px 40px;
        font-size: 16px;
    }

    .security-message {
        font-size: 11px;
        max-width: 90%;
    }

    .no-photo-warning {
        bottom: 15px;
        left: 15px;
        padding: 12px 18px;
        gap: 10px;
    }

    .camera-forbidden-icon {
        width: 30px;
        height: 30px;
    }

    .no-photo-text {
        font-size: 13px;
    }

    /* Mobile Device Warning Responsive */
    .mobile-device-warning {
        padding: 40px 30px;
        width: 95%;
    }

    .desktop-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .mobile-warning-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .mobile-warning-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .device-icons {
        font-size: 32px;
        gap: 15px;
    }

    /* Forecast Section Responsive */
    .forecast-item {
        padding: 25px 20px;
    }

    .forecast-subtitle {
        font-size: 20px;
    }

    .forecast-description {
        font-size: 15px;
    }

    .forecast-stat-box {
        padding: 30px 35px;
        min-width: 160px;
    }

    .forecast-stat-number {
        font-size: 48px;
    }

    .bitcoin-value-box {
        padding: 40px 30px;
    }

    .bitcoin-mega-icon {
        width: 100px;
        height: 100px;
    }

    .bitcoin-mega-number {
        font-size: 52px;
    }

    .bitcoin-mega-label {
        font-size: 18px;
    }

    .bitcoin-mega-value {
        font-size: 40px;
    }

    /* Video Modal Responsive */
    .modal-close {
        top: -45px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }

    .welcome-video {
        max-width: 95vw;
        border-radius: 12px;
    }
}

/* Smooth Scrolling for Safari */
@media screen and (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    margin-left: var(--sidebar-width);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.9;
    font-style: italic;
    margin: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

/* ==================== Image Slider Gallery ==================== */
#image-gallery-section {
    min-height: auto;
    padding: 30px 40px;
}

#image-gallery-section .section-content {
    padding: 0;
}

#image-gallery-section .section-heading {
    margin-bottom: 20px;
}

.image-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.image-slider {
    overflow: hidden;
    border-radius: 15px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.slider-item {
    flex: 0 0 calc(38% - 14px);
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.slider-item:hover {
    transform: scale(1.05);
}

.slider-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* ==================== Image Modal Viewer ==================== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: var(--primary-red);
}

.image-modal-prev,
.image-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-modal-prev:hover,
.image-modal-next:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.image-modal-prev {
    left: 30px;
}

.image-modal-next {
    right: 30px;
}

/* ==================== Three Images Section ==================== */
#three-images-section {
    min-height: auto;
    padding: 30px 40px;
}

#three-images-section .section-content {
    padding: 0;
    max-width: 1400px;
}

.three-images-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.image-top-center {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.image-top-center img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.images-bottom-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 700px;
    margin-top: 20px;
}

.image-bottom-left,
.image-bottom-right {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.image-bottom-left img,
.image-bottom-right img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Three Images */
@media (max-width: 1024px) {
    .images-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .image-bottom-left,
    .image-bottom-right {
        max-width: 300px;
    }
    
    .image-bottom-left img,
    .image-bottom-right img {
        max-width: 300px;
    }
}

/* ==================== Summary Section ==================== */
#summary-section {
    min-height: auto;
    padding: 50px 40px;
}

#summary-section .section-content {
    padding: 0;
    max-width: 900px;
}

#summary-section .section-heading {
    margin-bottom: 40px;
    text-align: center;
}

.summary-container {
    width: 100%;
}

.summary-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.summary-greeting {
    margin-bottom: 30px;
}

.greeting-line {
    font-size: 18px;
    margin: 5px 0;
    font-weight: 500;
}

.summary-intro {
    font-size: 17px;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--text-dark);
}

.summary-components {
    margin: 30px 0;
    padding: 0;
}

.component-item {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--off-white);
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.1);
}

.component-title {
    font-size: 20px;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-weight: 600;
}

.component-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.summary-status {
    font-size: 18px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.05));
    border-radius: 8px;
    margin: 30px 0;
    color: var(--dark-red);
}

.summary-text {
    font-size: 16px;
    margin: 20px 0;
    text-align: justify;
    line-height: 1.8;
}

.company-info {
    margin: 30px 0;
    padding: 25px;
    background: var(--off-white);
    border-radius: 10px;
}

.qualifications {
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.qualifications-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.qualifications-list {
    margin: 0;
    padding-left: 25px;
    list-style-type: none;
}

.qualifications-list li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.qualifications-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 18px;
}

.dr-statement {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(255, 0, 0, 0.03));
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    font-size: 17px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: justify;
}

.dr-name {
    color: var(--primary-red);
    font-weight: 700;
}

.roadmap-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0.02));
    border-radius: 10px;
}

.roadmap-title {
    font-size: 22px;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 600;
}

.roadmap-list {
    margin: 20px 0;
    padding-left: 25px;
    counter-reset: roadmap-counter;
    list-style: none;
}

.roadmap-list li {
    margin: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    counter-increment: roadmap-counter;
}

.roadmap-list li:before {
    content: counter(roadmap-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-red);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.attention-box {
    margin: 40px 0;
    padding: 25px;
    background: rgba(255, 200, 0, 0.1);
    border: 2px solid rgba(255, 200, 0, 0.3);
    border-radius: 10px;
}

.attention-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #d97706;
}

.contact-section {
    margin: 40px 0;
    padding: 25px;
    background: var(--off-white);
    border-radius: 10px;
    text-align: center;
}

.contact-phone {
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0 0 0;
    color: var(--primary-red);
}

.contact-phone a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

.summary-closing {
    margin-top: 40px;
    text-align: right;
    padding-top: 20px;
    border-top: 2px solid var(--off-white);
}

.closing-text {
    font-size: 17px;
    margin: 10px 0;
}

.closing-signature {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0;
    color: var(--primary-red);
}

/* Responsive Design for Summary */
@media (max-width: 768px) {
    #summary-section {
        padding: 30px 20px;
    }
    
    .component-item,
    .company-info,
    .roadmap-section,
    .attention-box,
    .contact-section {
        padding: 20px;
    }
    
    .summary-text {
        text-align: left;
    }
    
    .contact-phone {
        font-size: 20px;
    }
}

/* Responsive Design for Slider */
@media (max-width: 1024px) {
    .slider-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .slider-item img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 100%;
    }
    
    .slider-item img {
        height: 160px;
    }
    
    .image-slider-container {
        padding: 0 50px;
        margin: 15px auto;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .image-modal-prev,
    .image-modal-next {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .image-modal-close {
        font-size: 40px;
        right: 20px;
    }
}

/* ==================== Personnel & Team Size Section ==================== */
.personnel-section {
    background: var(--off-white);
    padding: 35px;
    border-radius: 12px;
    margin-top: 30px;
}

.personnel-timeline {
    margin: 30px 0;
}

.timeline-phase {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-phase:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.15);
}

.phase-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--off-white);
}

.personnel-stats {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.personnel-card {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    padding: 30px 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
    min-width: 200px;
}

.personnel-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.personnel-label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.team-breakdown {
    margin-top: 25px;
}

.breakdown-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.personnel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.personnel-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    border-bottom: 1px solid var(--off-white);
}

.personnel-list li:last-child {
    border-bottom: none;
}

.personnel-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 18px;
}

.personnel-insights {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0.02));
    border-radius: 12px;
}

.insights-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 25px;
    text-align: center;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.insight-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.15);
}

.insight-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.insight-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.insight-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

.personnel-note {
    margin-top: 35px;
    padding: 20px;
    background: rgba(255, 200, 0, 0.08);
    border-left: 4px solid rgba(255, 200, 0, 0.5);
    border-radius: 8px;
}

.personnel-note p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: var(--text-dark);
}

.personnel-note strong {
    color: var(--primary-red);
}

/* Responsive Design for Personnel Section */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .personnel-card {
        padding: 25px 40px;
    }
    
    .personnel-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .personnel-section {
        padding: 25px;
    }
    
    .timeline-phase {
        padding: 20px;
    }
    
    .phase-title {
        font-size: 20px;
    }
    
    .personnel-card {
        padding: 20px 30px;
    }
    
    .personnel-number {
        font-size: 36px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .personnel-list li {
        font-size: 15px;
    }
}
