        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Hero Section */
        .hero {
            margin-top: 82px;
            background: linear-gradient(rgba(26, 36, 30, 0.85), rgba(26, 36, 30, 0.85)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23333" width="1200" height="800"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            text-align: center;
            color: #FFFFFF;
            position: relative;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #C6A867;
            background: rgba(198, 168, 103, 0.15);
            padding: 8px 20px;
            border-radius: 100px;
            margin-bottom: 24px;
            border: 1px solid rgba(198, 168, 103, 0.3);
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 64px;
            font-weight: 400;
            margin-bottom: 24px;
            font-style: italic;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 16px;
            opacity: 0.95;
        }

        .hero-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.85;
            line-height: 1.8;
        }

        /* Timeline Stats */
        .timeline-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 48px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .timeline-stats.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-item {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-4px);
        }

        .stat-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 48px;
            font-weight: 600;
            color: #C6A867;
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #FFFFFF;
            opacity: 0.8;
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-miner {
            background: #FFFFFF;
        }

        .section-alt {
            background: #FAFAF8;
        }

        .section-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 48px;
            font-weight: 400;
            color: #1A241E;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 18px;
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 48px;
            line-height: 1.7;
        }

        /* Intro Section */
        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 40px;
        }

        .intro-text h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 36px;
            font-weight: 500;
            color: #2D5A3D;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .intro-text p {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .intro-highlight {
            background: linear-gradient(135deg, #2D5A3D 0%, #3A5F4D 100%);
            padding: 32px;
            border-radius: 16px;
            color: #FFFFFF;
            margin-top: 32px;
        }

        .intro-highlight h4 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .intro-highlight p {
            font-size: 15px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
        }

        .intro-image {
            width: 100%;
            height: 500px;
            background: #E5E5E5;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 96px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        /* Muzium Feature Section */
        .muzium-feature {
            background: linear-gradient(135deg, #1A241E 0%, #2D3A30 100%);
            padding: 80px 0;
            color: #FFFFFF;
            position: relative;
            overflow: hidden;
        }

        .muzium-feature::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: rgba(198, 168, 103, 0.05);
            transform: skewX(-15deg);
            transform-origin: top;
        }

        .muzium-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .muzium-text {
            padding-right: 40px;
        }

        .muzium-badge {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #C6A867;
            background: rgba(198, 168, 103, 0.15);
            padding: 6px 16px;
            border-radius: 100px;
            margin-bottom: 20px;
        }

        .muzium-text h2 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .muzium-text p {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 16px;
        }

        .muzium-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 32px;
        }

        .muzium-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .muzium-feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(198, 168, 103, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .muzium-feature-text {
            flex: 1;
        }

        .muzium-feature-text h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: #C6A867;
            margin-bottom: 4px;
        }

        .muzium-feature-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            margin: 0;
            line-height: 1.5;
        }

        .muzium-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 32px;
            padding: 14px 32px;
            background: #C6A867;
            color: #1A241E;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 100px;
            transition: all 0.3s ease;
        }

        .muzium-cta:hover {
            background: #D4B676;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(198, 168, 103, 0.3);
        }

        .muzium-image-box {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(198, 168, 103, 0.3);
            border-radius: 20px;
            padding: 20px;
            backdrop-filter: blur(10px);
        }

        .muzium-image {
            width: 100%;
            height: 400px;
            background: #2D3A30;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 72px;
        }
        
        /* Elegant Facebook Icon Button */
        .muzium-facebook-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 32px;
            width: 56px;
            height: 56px;
            background: #C6A867; /* Theme gold */
            color: #1A241E; /* Deep green from section background */
            text-decoration: none;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .muzium-facebook-btn svg {
            transition: transform 0.3s ease;
        }
        
        .muzium-facebook-btn:hover {
            background: #D4B676; /* Slightly lighter gold */
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(198, 168, 103, 0.4);
            color: #0D1410;
        }
        
        .muzium-facebook-btn:hover svg {
            transform: scale(1.1);
        }
        
        /* Subtle pulse effect to draw attention (Optional) */
        .muzium-facebook-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid #C6A867;
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .muzium-facebook-btn:hover::after {
            transform: scale(1.2);
            opacity: 0;
        }

        /* Heritage Map Section */
        .heritage-map-section {
            background: #1A241E;
            padding: 80px 0;
            color: #FFFFFF;
        }

        .heritage-map-section .section-title {
            color: #FFFFFF;
        }

        .heritage-map-section .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .map-container {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(198, 168, 103, 0.2);
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            backdrop-filter: blur(10px);
        }

        .map-placeholder {
            width: 100%;
            height: 500px;
            background: rgba(45, 90, 61, 0.2);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            border: 2px dashed rgba(198, 168, 103, 0.3);
        }

        .map-placeholder-text {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 16px;
        }

        .map-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 24px;
            padding: 14px 32px;
            background: #C6A867;
            color: #1A241E;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 100px;
            transition: all 0.3s ease;
        }

        .map-link:hover {
            background: #D4B676;
            transform: translateY(-2px);
        }

        /* Ex-Miners Section */
        .miners-preview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 48px;
        }

        .miners-image {
            width: 100%;
            height: 500px;
            background: #E5E5E5;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 96px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .miners-info h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 36px;
            font-weight: 500;
            color: #2D5A3D;
            margin-bottom: 20px;
        }

        .miners-info p {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .miners-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 32px 0;
            padding: 28px;
            background: #FAFAF8;
            border-radius: 16px;
        }

        .miners-stat {
            text-align: center;
        }

        .miners-stat-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 36px;
            font-weight: 600;
            color: #2D5A3D;
            display: block;
            margin-bottom: 4px;
        }

        .miners-stat-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .miners-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: #2D5A3D;
            color: #FFFFFF;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 100px;
            transition: all 0.3s ease;
            margin-top: 8px;
        }

        .miners-cta:hover {
            background: #3A5F4D;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(45, 90, 61, 0.3);
        }

        /* Artifacts Section */
        .artifacts-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 48px;
        }

        .artifacts-intro p {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            color: #666;
            line-height: 1.8;
        }

        .artifacts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            margin-top: 48px;
        }

        .artifact-card {
            background: #FFFFFF;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .artifact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        }

        .artifact-image {
            width: 100%;
            height: 220px;
            background: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }

        .artifact-info {
            padding: 20px;
        }

        .artifact-category {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #2D5A3D;
            margin-bottom: 8px;
        }

        .artifact-name {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 18px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 8px;
        }

        .artifact-period {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }

            .intro-content,
            .muzium-content,
            .miners-preview {
                grid-template-columns: 1fr;
            }

            .artifacts-grid {
                grid-template-columns: 1fr;
            }

            .timeline-stats {
                flex-direction: column;
                gap: 32px;
            }
        }