:root {
    --bg-primary: #070a13;
    --bg-secondary: #0c101f;
    --bg-surface: rgba(16, 22, 42, 0.7);
    --bg-surface-glow: rgba(0, 229, 255, 0.03);
    --color-primary: #00e5ff;
    --color-primary-glow: rgba(0, 229, 255, 0.4);
    --color-secondary: #10b981;
    --color-accent: #8b5cf6;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #6b7280;
    --border-color: rgba(0, 229, 255, 0.15);
    --border-color-hover: rgba(0, 229, 255, 0.4);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1300px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-glow: 0 0 20px rgba(0, 229, 255, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Disclaimer Bar */
.top-disclaimer-bar {
    background: #05070c;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
}

.top-disclaimer-bar::before {
    content: '⚠️';
    margin-right: 6px;
}

/* Header */
.slim-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 10, 19, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: 64px;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    animation: pulse 3s infinite alternate;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
    box-shadow: 0 0 8px var(--color-primary);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.header-cta:hover {
    background: var(--color-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* Mobile Nav Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

/* Containers & Structures */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 96px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 64px auto;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #00b0ff);
    color: #030712;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Game Frame Container */
.game-viewport-section {
    background: #090e1a;
    position: relative;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.game-cabinet-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #0d1326;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.25);
    overflow: hidden;
    position: relative;
}

.game-cabinet-header {
    background: #070a13;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-title-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.game-title-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-main);
}

.game-controls-deco {
    display: flex;
    gap: 8px;
}

.control-light {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.control-light.blue { background: var(--color-primary); box-shadow: 0 0 6px var(--color-primary); }
.control-light.green { background: var(--color-secondary); box-shadow: 0 0 6px var(--color-secondary); }

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #030712;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-cabinet-footer {
    background: #070a13;
    padding: 12px 24px;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-primary);
}

.hero-badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 60%, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.medical-hud-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px dashed rgba(0, 229, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateHUD 40s linear infinite;
}

.hud-inner-ring {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-top-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    animation: rotateHUDInverse 20s linear infinite;
}

.hud-core {
    position: absolute;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

.hud-symbol {
    font-size: 3rem;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

.hud-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 8px;
}

/* Feature Cards Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
    background: rgba(16, 22, 42, 0.95);
}

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

.card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.feature-card:hover .card-icon-box {
    background: var(--color-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Info Banner Split layout */
.info-split-section {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
    position: relative;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: center;
}

.split-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #030712;
}

.split-svg-graphic {
    width: 100%;
    height: auto;
    display: block;
}

.split-content-container {
    padding-right: 32px;
}

.highlight-list {
    list-style: none;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Statistics Counter Section */
.stats-section {
    background: rgba(5, 7, 12, 0.8);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-trigger span {
    font-family: var(--font-heading);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(7, 10, 19, 0.4);
}

.faq-content p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Toggle active states (managed via pure CSS details/summary or light script, we build standard robust styling) */
.faq-card[open] .faq-icon {
    transform: rotate(45deg);
    border-color: var(--color-primary);
}

.faq-card[open] .faq-content {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

/* Contact Area Styles */
.contact-section-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-meta-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-meta-text h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-meta-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    word-break: break-all;
}

.contact-form-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: rgba(7, 10, 19, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Form state styles */
.form-response-msg {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-response-msg.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--color-secondary);
    color: #6ee7b7;
}

/* Blog Preview Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.blog-image-block {
    height: 200px;
    background: #030712;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-body {
    padding: 28px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: block;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link:hover {
    color: #ffffff;
}

/* Newsletter CTA Section */
.newsletter-section {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-box {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.newsletter-form input {
    flex-grow: 1;
}

/* Footer Container styling */
.main-footer {
    background: #04060b;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-top {
    padding: 80px 0 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
}

.footer-col-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-about-p {
    margin-top: 16px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links-list a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-address-block {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-address-block p {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 0;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-left {
    font-size: 0.8rem;
    color: var(--text-dark);
}

.footer-bottom-right {
    display: flex;
    gap: 24px;
}

.footer-bottom-right a {
    font-size: 0.8rem;
    color: var(--text-dark);
}

.footer-bottom-right a:hover {
    color: var(--color-primary);
}

.legal-disclaimer-box {
    margin-top: 24px;
    padding: 16px;
    border: 1px solid rgba(239, 68, 68, 0.15);
    background: rgba(239, 68, 68, 0.02);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.5;
    color: #f87171;
}

/* Legal Content styling */
.legal-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 24px;
    text-align: center;
}

.legal-meta {
    text-align: center;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 48px;
}

.legal-rich-text h2 {
    font-size: 1.75rem;
    margin: 40px 0 20px 0;
    color: #ffffff;
}

.legal-rich-text p, .legal-rich-text ul {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.legal-rich-text ul {
    padding-left: 24px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    background: rgba(12, 16, 31, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 8px;
}

.cookie-btn {
    flex-grow: 1;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.cookie-btn-accept {
    background: var(--color-primary);
    color: var(--bg-primary);
    border: none;
}

.cookie-btn-accept:hover {
    box-shadow: 0 0 10px var(--color-primary-glow);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Animations declarations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px var(--color-primary-glow); }
    100% { transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 229, 255, 0.6); }
}

@keyframes rotateHUD {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateHUDInverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes pulseGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .card-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid, .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        order: -1;
    }
    .hero-title {
        font-size: 3rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Mobile menu toggled logic */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .card-grid, .blog-grid, .stats-grid, .footer-grid, .contact-section-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .stat-item::after {
        display: none !important;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}