:root {
    --bg-dark: #050a0f;
    --card-bg: rgba(255, 255, 255, 0.03);
    --gold: #00d4ff; /* Using Cyan as the primary accent */
    --gold-glow: rgba(0, 212, 255, 0.4);
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --accent-blue: #b026ff; /* Using Electric Purple as secondary */
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

::-webkit-scrollbar {
    display: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(1.5rem + env(safe-area-inset-top)) 5% 1.5rem;
    background: rgba(5, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 5px var(--gold));
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.cta-button {
    background: var(--gold);
    color: var(--bg-dark) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 700 !important;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--gold-glow);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: radial-gradient(circle at center, #1a202c 0%, var(--bg-dark) 70%);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    margin: 0 1rem;
    transition: all 0.3s;
}

.btn.primary {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn.secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--gold-glow);
}

.stats {
    display: flex;
    justify-content: space-around;
    padding: 5rem 10%;
    background: rgba(255,255,255,0.02);
}

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

.stat-card h3 {
    font-size: 3rem;
    color: var(--gold);
}

.stat-card p {
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products {
    padding: 8rem 5%;
    text-align: center;
}

.products h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 3px;
}

.product-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.price small {
    font-size: 0.8rem;
    color: var(--accent-blue);
    display: block;
}

.btn-buy {
    display: block;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-buy:hover {
    background: var(--gold);
    color: var(--bg-dark);
}



footer {
    padding: 4rem 5% calc(4rem + env(safe-area-inset-bottom));
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-gray);
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch:hover {
    animation: glitch 0.3s infinite;
}

/* Pulse welcome banner for iGaming integration */
.affiliate-welcome-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(176, 38, 255, 0.1);
    border: 1px solid var(--accent-blue);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.2);
    animation: banner-glow 3s infinite alternate;
}

.affiliate-welcome-banner a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.5rem;
    transition: text-shadow 0.3s;
}

.affiliate-welcome-banner a:hover {
    text-shadow: 0 0 8px var(--gold-glow);
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--gold); }
    100% { transform: scale(0.9); opacity: 0.5; }
}

@keyframes banner-glow {
    0% { box-shadow: 0 0 10px rgba(176, 38, 255, 0.1); }
    100% { box-shadow: 0 0 25px rgba(176, 38, 255, 0.3); }
}

/* Sovereign AI Infrastructure & Data Marketplace Section */
.infra-section {
    padding: 8rem 5%;
    text-align: center;
    background: linear-gradient(180deg, rgba(10,10,12,0) 0%, rgba(13,13,18,0.8) 50%, rgba(10,10,12,0) 100%);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.infra-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.05em;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.6;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.infra-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.infra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(176,38,255,0.05), rgba(0,240,255,0.05));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.infra-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.infra-card:hover::before {
    opacity: 1;
}

.infra-card > * {
    position: relative;
    z-index: 2;
}

.infra-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.infra-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 700;
}

.infra-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Telemetry Terminal Component styling */
.telemetry-container {
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    background: rgba(5, 5, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.telemetry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.telemetry-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
}

.telemetry-dot {
    width: 8px;
    height: 8px;
    background: #00ffcc;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffcc;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}

.telemetry-stats {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.telemetry-stat-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.telemetry-stat-value {
    color: var(--gold);
    font-weight: 700;
    margin-left: 0.5rem;
}

.telemetry-terminal {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 1.5rem;
    height: 250px;
    overflow-y: hidden;
    font-family: 'Outfit', 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #00ffcc;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.telemetry-line {
    opacity: 0.85;
    margin-bottom: 0.4rem;
    animation: slideIn 0.3s ease-out;
}

.telemetry-line span.timestamp {
    color: var(--text-gray);
    opacity: 0.5;
    margin-right: 1rem;
}

.telemetry-line span.event {
    color: #fff;
}

.telemetry-line span.success {
    color: #00ffcc;
}

.telemetry-line span.warning {
    color: var(--gold);
}

@keyframes slideIn {
    from { transform: translateY(5px); opacity: 0; }
    to { transform: translateY(0); opacity: 0.85; }
}

/* Telemetry Toggle Buttons */
.telemetry-toggle {
    display: inline-flex;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 3px;
    flex-shrink: 0;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.toggle-btn:hover {
    color: #fff;
}

.toggle-btn.active {
    background: rgba(0, 255, 204, 0.1);
    color: #00ffcc;
    border: 1px solid rgba(0, 255, 204, 0.2);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.15);
}

.toggle-btn.active#toggle-vc {
    background: rgba(176, 38, 255, 0.15);
    color: var(--gold);
    border: 1px solid rgba(176, 38, 255, 0.2);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.15);
}


