        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f8f9fa;
            min-height: 100vh;
        }

        /* ============================
           ABYSSAL VOID - MAIN CONTAINER
        ============================ */
        
        .abyssal-void-container {
            background: #000000;
            color: #ffffff;
            padding: 70px 20px 30px;
            font-family: 'Inter', sans-serif;
        }

        .nebula-grid-matrix {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
        }

        /* ============================
           ORIGIN CHAPTER - ABOUT SECTION
        ============================ */
        
        .origin-story-chapter {
            position: relative;
        }

        .brand-identity-crystal {
            width: 130px;
            height: auto;
            margin-bottom: 20px;
            opacity: 0.9;
            transition: opacity 0.2s ease;
        }

        .brand-identity-crystal:hover {
            opacity: 1;
        }

        .narrative-scroll {
            font-size: 14px;
            line-height: 1.7;
            color: #a0a0a0;
            max-width: 320px;
            margin-bottom: 24px;
        }

        /* Summoning Button */
        .action-summoning-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: transparent;
            color: #ffffff;
            text-decoration: none;
            border: 1.5px solid rgba(255,255,255,0.3);
            border-radius: 8px;
            font-weight: 500;
            font-size: 13px;
            transition: all 0.2s ease;
        }

        .action-summoning-button:hover {
            background: #dc2626;
            border-color: #dc2626;
        }

        .action-summoning-button i {
            font-size: 11px;
        }

        /* ============================
           SECTION TITLES - CELESTIAL
        ============================ */
        
        .portal-gateway-cluster h3,
        .signal-transmission-hub h3,
        .tribal-gathering-circle h3 {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Dimensional Lists */
        .portal-gateway-cluster ul,
        .signal-transmission-hub ul {
            list-style: none;
        }

        .portal-gateway-cluster li,
        .signal-transmission-hub li {
            margin-bottom: 12px;
            font-size: 14px;
            color: #909090;
        }

        /* Wormhole Links */
        .portal-gateway-cluster a {
            text-decoration: none;
            color: #909090;
            transition: color 0.2s ease;
        }

        .portal-gateway-cluster a:hover {
            color: #ffffff;
        }

        /* ============================
           SIGNAL HUB - CONTACT INFO
        ============================ */
        
        .signal-transmission-hub li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.6;
        }

        .transmission-beacon-icon {
            color: #606060;
            margin-top: 3px;
            font-size: 13px;
            transition: color 0.2s ease;
        }

        .signal-transmission-hub li:hover .transmission-beacon-icon {
            color: #dc2626;
        }

        .frequency-data-span {
            color: #909090;
        }

        .signal-transmission-hub a {
            color: #909090;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .signal-transmission-hub a:hover {
            color: #ffffff;
        }

        /* ========================================
           DIGITAL TOTEM ARRAY - SOCIAL ICONS
        ======================================== */

        .digital-totem-array {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 18px;
        }

        .connection-node-entity {
            /* Quantum Container - Square shape */
            display: flex;
            align-items: center;
            justify-content: center;
            
            width: 44px;
            height: 44px;
            
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.15);
            
            /* Geometric Square */
            border-radius: 8px;
            
            color: #888888;
            font-size: 17px;
            text-decoration: none;
            
            transition: all 0.2s ease;
        }

        /* Inner Icon Core */
        .connection-node-entity i {
            /* Fixed quantum dimensions */
            width: 44px;
            height: 44px;
            
            /* Perfect center alignment */
            display: flex;
            align-items: center;
            justify-content: center;
            
            line-height: 1;
            
            transition: all 0.2s ease;
        }

        /* Hover Activation - Crimson Energy */
        .connection-node-entity:hover {
            background: #dc2626;
            border-color: #dc2626;
            color: #ffffff;
        }

        /* Tribal Wisdom Text */
        .tribal-gathering-circle p {
            font-size: 13px;
            color: #606060;
            line-height: 1.6;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        /* ============================
           FOUNDATION BEDROCK - BOTTOM BAR
        ============================ */
        
        .foundation-bedrock-layer {
            max-width: 1100px;
            margin: 50px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright-rune-text {
            font-size: 13px;
            color: #505050;
        }

        .legal-portal-chain {
            display: flex;
            gap: 24px;
        }

        .legal-portal-chain a {
            color: #606060;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s ease;
        }

        .legal-portal-chain a:hover {
            color: #ffffff;
        }

        /* ========================================
           RESPONSIVE DIMENSIONAL SHIFTS
        ======================================== */

        @media (max-width: 1024px) {
            .nebula-grid-matrix {
                grid-template-columns: 1fr 1fr;
                gap: 35px;
            }
        }

        @media (max-width: 768px) {
            .abyssal-void-container {
                padding: 60px 20px 28px;
            }

            .nebula-grid-matrix {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .narrative-scroll {
                max-width: 100%;
            }

            .foundation-bedrock-layer {
                flex-direction: column;
                text-align: center;
                gap: 18px;
            }
        }

        @media (max-width: 480px) {
            .abyssal-void-container {
                padding: 50px 16px 24px;
            }

            .brand-identity-crystal {
                width: 115px;
            }

            .narrative-scroll {
                font-size: 13px;
            }

            .action-summoning-button {
                padding: 10px 20px;
                font-size: 12.5px;
            }

            .connection-node-entity {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .connection-node-entity i {
                width: 40px;
                height: 40px;
            }
        }
