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

        html, body {
            background: #0a0a0a;
            color: #f5f5f5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .video-container {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0.35;
            z-index: 0;
        }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 40px;
        }

        .gold-bar-top,
        .gold-bar-bottom {
            width: 120px;
            height: 2px;
            background: #d4af37;
            margin: 20px auto;
        }

        .project-name {
            font-size: 4rem;
            font-weight: 300;
            letter-spacing: 8px;
            margin: 0;
            text-transform: uppercase;
            color: #ffffff;
        }

        /* Transparent Gold Button */
        .transparent-button {
            display: inline-block;
            padding: 14px 40px;
            border: 2px solid #d4af37;
            background: rgba(255, 255, 255, 0.05);
            color: #d4af37;
            backdrop-filter: blur(6px);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 2px;
            transition: 0.3s;
            border-radius: 8px; /* smaller rounded corners */

        }

        .transparent-button:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        /* CONTENT SECTION */
        .content-section {
            background: #f5f1e8;
            color: #1a1a1a;
            padding: 100px 40px;
        }

        .content-wrapper {
            max-width: 1000px;
            margin: 0 auto;
        }

        .content-title {
            font-size: 3rem;
            font-weight: 700 !important;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-align: center;
        }

        .content-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #333;
            text-align: center;
        }

        /* FOOTER SECTION */
        .footer-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 40px;
        }

        .footer-video-container {
            position: absolute;
            inset: 0;
            opacity: 0.25;
            z-index: 0;
        }

        .footer-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .footer-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
        }

        .footer-title {
            font-size: 2.3rem;
            font-weight: 300;
            letter-spacing: 4px;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .project-name {
                font-size: 2.6rem;
                letter-spacing: 4px;
            }

            .content-title {
                font-size: 2rem;
            }

            .footer-title {
                font-size: 1.8rem;
            }
        }