* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        :root {
            --primary: #0066CC;
            --secondary: #FF4500;
            --dark: #121212;
            --light: #F8F9FA;
            --accent: #FFD700;
            --shadow: rgba(0,0,0,0.1);
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.8;
            font-size: 16px;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: var(--dark);
            color: var(--light);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 15px var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: var(--primary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }
        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        nav a:hover {
            color: var(--accent);
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
            background: none;
            border: none;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://host.com/images/spike-dominator-s-legacy-hero.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--light);
            padding: 6rem 0;
            text-align: center;
            border-bottom: 5px solid var(--primary);
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 2.5rem;
            color: #E0E0E0;
        }
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 0 0.7rem;
            box-shadow: 0 4px 12px rgba(0,102,204,0.3);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #0052A3;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0,102,204,0.4);
        }
        .btn-secondary {
            background-color: var(--secondary);
            box-shadow: 0 4px 12px rgba(255,69,0,0.3);
        }
        .btn-secondary:hover {
            background-color: #E03A00;
            box-shadow: 0 6px 16px rgba(255,69,0,0.4);
        }
        main {
            padding: 4rem 0;
        }
        section {
            margin-bottom: 4rem;
            scroll-margin-top: 100px;
        }
        .content-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px var(--shadow);
            margin-bottom: 2.5rem;
            transition: transform 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.8rem;
            color: var(--primary);
            border-bottom: 3px solid var(--accent);
            padding-bottom: 0.8rem;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1.2rem;
            color: var(--secondary);
            position: relative;
            padding-left: 1rem;
        }
        h3::before {
            content: '•';
            color: var(--accent);
            font-size: 2rem;
            position: absolute;
            left: -5px;
            top: -5px;
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 1rem;
            color: var(--dark);
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            color: #333;
        }
        .highlight {
            background-color: rgba(0,102,204,0.1);
            padding: 0.4rem 0.7rem;
            border-radius: 6px;
            font-weight: 600;
            color: #004080;
            border-left: 4px solid var(--primary);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 15px var(--shadow);
            border-top: 5px solid var(--primary);
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px var(--shadow);
        }
        .feature-card h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .feature-card h4 i {
            color: var(--accent);
        }
        .table-container {
            overflow-x: auto;
            margin: 2.5rem 0;
            border-radius: 8px;
            box-shadow: 0 4px 15px var(--shadow);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        th {
            background-color: var(--dark);
            color: white;
            padding: 1.2rem;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #EEE;
        }
        tr:nth-child(even) {
            background-color: #F8F8F8;
        }
        tr:hover {
            background-color: #F0F7FF;
        }
        ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 4rem 0 2rem;
            margin-top: 5rem;
            border-top: 5px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .footer-column h4 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255,215,0,0.3);
        }
        .footer-column ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-column a {
            color: #CCCCCC;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }
        .footer-column a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #AAAAAA;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                position: fixed;
                top: 0;
                left: -100%;
                flex-direction: column;
                background-color: var(--dark);
                width: 80%;
                height: 100vh;
                padding: 3rem 2rem;
                transition: left 0.3s ease;
                z-index: 999;
                box-shadow: 5px 0 15px rgba(0,0,0,0.3);
            }
            nav ul.active {
                left: 0;
            }
            nav ul li {
                margin-bottom: 1.5rem;
            }
            .hamburger {
                display: block;
                position: fixed;
                top: 20px;
                right: 20px;
                z-index: 1001;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .btn {
                display: block;
                margin: 1rem auto;
                width: 80%;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .content-card {
                padding: 1.5rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-4 {
            margin-bottom: 1.5rem;
        }
        .mt-4 {
            margin-top: 1.5rem;
        }
        .icon {
            margin-right: 8px;
        }
