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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--brand-black);
            color: var(--brand-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        .site-GsXmnT-container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .site-GsXmnT-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid var(--brand-gray);
            padding: 15px 0;
        }

        .site-GsXmnT-header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-GsXmnT-logo {
            font-weight: 900;
            font-size: 24px;
            color: var(--brand-yellow);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .site-GsXmnT-nav {
            display: none;
        }

        @media (min-width: 1024px) {
            .site-GsXmnT-nav {
                display: flex;
                gap: 20px;
            }
            .site-GsXmnT-nav-link:hover {
                color: var(--brand-yellow);
            }
        }

        /* Buttons */
        .site-GsXmnT-btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: var(--border-radius);
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
            font-size: 14px;
        }

        .site-GsXmnT-btn--primary {
            background-color: var(--brand-yellow);
            color: var(--brand-black);
        }

        .site-GsXmnT-btn--primary:hover {
            background-color: #e5a204;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 180, 5, 0.3);
        }

        .site-GsXmnT-btn--outline {
            background-color: transparent;
            border: 2px solid var(--brand-yellow);
            color: var(--brand-yellow);
        }

        .site-GsXmnT-btn--outline:hover {
            background-color: var(--brand-yellow);
            color: var(--brand-black);
        }

        /* Hero Section */
        .site-GsXmnT-hero {
            padding: 60px 0;
            background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
            text-align: center;
        }

        .site-GsXmnT-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--brand-yellow);
            line-height: 1.2;
        }

        .site-GsXmnT-hero-text {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            color: #ccc;
        }

        .site-GsXmnT-hero-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .site-GsXmnT-placeholder-img {
            width: 100%;
            max-width: 600px;
            height: 300px;
            margin: 20px auto;
            border: 2px dashed var(--brand-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--brand-gray);
            color: #888;
            border-radius: var(--border-radius);
        }

        /* Sections */
        .site-GsXmnT-section {
            padding: 60px 0;
        }

        .site-GsXmnT-section--alt {
            background-color: var(--brand-gray);
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--brand-yellow);
            border-left: 5px solid var(--brand-yellow);
            padding-left: 15px;
        }

        h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--brand-white);
        }

        /* Table Wrapper */
        .site-GsXmnT-table-container {
            overflow-x: auto;
            margin: 30px 0;
            background: var(--brand-gray-light);
            border-radius: var(--border-radius);
        }

        table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            color: var(--brand-white);
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--brand-gray);
        }

        th {
            background-color: var(--brand-yellow);
            color: var(--brand-black);
            font-weight: 700;
        }

        /* Cards */
        .site-GsXmnT-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .site-GsXmnT-card {
            background-color: var(--brand-gray-light);
            padding: 25px;
            border-radius: var(--border-radius);
            border-top: 3px solid var(--brand-yellow);
            transition: var(--transition);
        }

        .site-GsXmnT-card:hover {
            transform: translateY(-5px);
        }

        /* FAQ */
        .site-GsXmnT-faq-item {
            margin-bottom: 15px;
            background: var(--brand-gray-light);
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .site-GsXmnT-faq-question {
            padding: 20px;
            cursor: pointer;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-GsXmnT-faq-answer {
            padding: 0 20px 20px;
            display: none;
            color: #ccc;
        }

        .site-GsXmnT-faq-item.active .site-GsXmnT-faq-answer {
            display: block;
        }

        /* Footer */
        .site-GsXmnT-footer {
            background-color: #111;
            padding: 60px 0 20px;
            border-top: 1px solid var(--brand-gray);
        }

        .site-GsXmnT-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .site-GsXmnT-footer-title {
            color: var(--brand-yellow);
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .site-GsXmnT-footer-links {
            list-style: none;
            padding: 0;
        }

        .site-GsXmnT-footer-links li {
            margin-bottom: 10px;
        }

        .site-GsXmnT-footer-links a:hover {
            color: var(--brand-yellow);
        }

        .site-GsXmnT-disclaimer {
            font-size: 12px;
            color: #666;
            text-align: center;
            border-top: 1px solid var(--brand-gray);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .site-GsXmnT-hero h1 { font-size: 1.8rem; }
            h2 { font-size: 1.5rem; }
            .site-GsXmnT-btn { width: 100%; margin-bottom: 10px; }
        }