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

:root {
    --bg-dark: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --accent-primary: #2E73E9;
    --accent-secondary: #172D67;
    --text-primary: #e6e8eb;
    --text-secondary: #9ba3af;
    --border-color: #2a2a2a;
    --gradient: linear-gradient(135deg, #2E73E9 0%, #172D67 100%);
    --gradient-hover: linear-gradient(135deg, #172D67 0%, #2E73E9 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/bgPattern/bg_pattern.png');
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 1;
    z-index: -1;
    pointer-events: none;
} */

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Particle Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: none;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

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

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(46, 115, 233, 0.4));
}

.logo-title {
    height: 19px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(46, 115, 233, 0.4));
    transform: translateY(5px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--accent-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.21;
    filter: brightness(0.7);
}

/* .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/bgPattern/bg_pattern.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    filter: invert(1) brightness(2);
    z-index: 0;
    pointer-events: none;
} */

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 115, 233, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: pulse 4s ease-in-out infinite;
}

/* .hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(46, 115, 233, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 115, 233, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridScroll 20s linear infinite;
} */

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.15; }
}

@keyframes gridScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Military HUD Elements */
.military-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.tactical-element {
    position: absolute;
    color: var(--accent-primary);
    font-family: 'Courier New', monospace;
}

/* Crosshairs */
.crosshair-1, .crosshair-2 {
    font-size: 2.5rem;
    opacity: 0.15;
    animation: crosshairPulse 3s ease-in-out infinite;
}

.crosshair-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.crosshair-2 {
    bottom: 25%;
    right: 20%;
    animation-delay: 1.5s;
}

/* Target Boxes */
.target-box-1, .target-box-2 {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-primary);
    opacity: 0.2;
    animation: targetScan 4s ease-in-out infinite;
}

.target-box-1 {
    top: 30%;
    right: 15%;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.target-box-2 {
    bottom: 30%;
    left: 20%;
    border-left-color: transparent;
    border-top-color: transparent;
}

/* Radar Sweep */
.radar-sweep {
    width: 150px;
    height: 150px;
    border: 2px solid var(--accent-secondary);
    border-radius: 50%;
    top: 15%;
    right: 10%;
    opacity: 0.1;
    animation: radarSweep 8s linear infinite;
}

.radar-sweep::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 75px;
    background: var(--accent-secondary);
    top: 50%;
    left: 50%;
    transform-origin: top;
    animation: radarLine 2s linear infinite;
}

/* Scan Lines */
.scan-line-1, .scan-line-2 {
    width: 120px;
    height: 1px;
    background: var(--accent-primary);
    opacity: 0.2;
    animation: scanMove 5s ease-in-out infinite;
}

.scan-line-1 {
    top: 40%;
    left: 10%;
}

.scan-line-2 {
    bottom: 35%;
    right: 12%;
    animation-delay: 2.5s;
}

@keyframes crosshairPulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

@keyframes targetScan {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(1.15); }
}

@keyframes radarSweep {
    0% { opacity: 0.1; transform: rotate(0deg); }
    50% { opacity: 0.2; }
    100% { opacity: 0.1; transform: rotate(360deg); }
}

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

@keyframes scanMove {
    0%, 100% { transform: translateX(0); opacity: 0.2; }
    50% { transform: translateX(20px); opacity: 0.35; }
}

/* Military Text Background */
.military-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.mil-term {
    position: absolute;
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    opacity: 0.1;
    animation: terminalScroll 30s linear infinite;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.term-1 {
    top: 18%;
    left: 5%;
    animation-delay: 0s;
}

.term-2 {
    top: 32%;
    right: 8%;
    animation-delay: 5s;
}

.term-3 {
    top: 52%;
    left: 12%;
    animation-delay: 10s;
}

.term-4 {
    top: 68%;
    right: 15%;
    animation-delay: 15s;
}

.term-5 {
    top: 78%;
    left: 25%;
    animation-delay: 20s;
}

.term-6 {
    top: 42%;
    right: 10%;
    animation-delay: 12s;
}

@keyframes terminalScroll {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateX(calc(100vw + 200px));
        opacity: 0;
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

@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); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Hero Buttons - Fraktal Style */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.4s both;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 115, 233, 0.3);
    filter: brightness(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

/* Old CTA button for backwards compatibility */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 115, 233, 0.5);
    filter: brightness(1.1);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-primary);
}

.mission-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.feature-card {
    background-color: var(--bg-tertiary);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 115, 233, 0.08) 0%, rgba(23, 45, 103, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.feature-card:hover .feature-icon {
    background: var(--accent-primary);
    color: var(--bg-dark);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(46, 115, 233, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--accent-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
}

.member-role {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-tertiary);
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.team-member:hover .member-role {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.team-member p {
    color: var(--text-secondary);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    text-align: center;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.contact-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.12;
    filter: brightness(0.5);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.contact p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--bg-tertiary);
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    border: 2px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(46, 115, 233, 0.4);
}

/* Footer */
footer {
    padding: 2rem 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    z-index: 4;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* NEW SECTIONS STYLING */

/* Hero Tag */
.hero-tag {
    font-size: 0.9rem;
    color: var(--accent-secondary);
    font-family: 'Courier New', monospace;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.1s both;
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 150px;
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-section .section-title {
    color: #cc0000;
    text-shadow: 0 0 5px rgba(204, 0, 0, 0.15);
}

.section-subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 4rem 0 2rem;
    text-align: center;
    color: var(--accent-primary);
}

/* Market Section */
.market-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

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

.market-stat-card {
    background: var(--bg-tertiary);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.market-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

/* Domains Grid */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0 4rem;
}

.domain-card {
    background: var(--bg-tertiary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.domain-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.domain-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.domain-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.domain-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Industry Shift */
.industry-shift {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.shift-desc {
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.companies-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.company-item {
    background: var(--bg-tertiary);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.company-item.highlight {
    border-color: var(--accent-primary);
    background: rgba(46, 115, 233, 0.08);
}

.company-name {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.company-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Startups Grid */
.startups-section {
    margin: 4rem 0;
}

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

.startup-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.startup-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
}

.startup-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.startup-valuation {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.startup-raised {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Product Section */
.product-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.product-hero {
    background: var(--bg-tertiary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
    text-align: center;
}

.product-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #cc0000;
    text-shadow: 0 0 5px rgba(204, 0, 0, 0.12);
}

.product-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.product-feature {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.product-feature:hover {
    transform: translateY(-10px);
    border-color: #cc0000;
    box-shadow: 0 10px 40px rgba(204, 0, 0, 0.1);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc0000;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 2px rgba(204, 0, 0, 0.1));
}

.feature-icon-large svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.product-feature:hover .feature-icon-large {
    background: #cc0000;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(204, 0, 0, 0.3);
    filter: drop-shadow(0 0 6px rgba(204, 0, 0, 0.2));
}

.product-feature h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-feature p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Timeline */
.product-roadmap {
    margin: 4rem 0;
}

.timeline {
    max-width: 1000px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
    text-align: right;
}

.timeline-year {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.timeline-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.timeline-content p {
    color: var(--text-secondary);
}

/* Gaming Section */
.gaming-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.gaming-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0 4rem;
}

.advantage-card {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.gaming-examples {
    margin: 4rem 0;
}

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

.example-card {
    background: var(--bg-tertiary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.example-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

.example-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Team Simple (LinkedIn Links) */
.team-member-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.team-member-simple {
    background-color: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team-member-link:hover .team-member-simple {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
}

.member-name {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Contact Enhanced */
.contact-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-item {
    text-align: center;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-link {
    font-size: 1.3rem;
    color: var(--accent-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.contact-link:hover {
    color: var(--accent-secondary);
    transform: scale(1.05);
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Footer Enhanced */
.footer-content {
    padding: 3rem 2rem 2rem;
    display: flex;
    justify-content: center;
}

.footer-logo-large img {
    width: 200px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-mini {
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) .timeline-year {
        order: 1;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 2;
        text-align: left;
    }

    .timeline-year {
        font-size: 2rem;
        position: absolute;
        left: 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        justify-content: center;
        padding: 3rem 1rem 2rem;
    }

    .footer-logo-large img {
        width: 150px;
    }
}
