/* ===================================
   AICRONE - Premium Landing Page CSS
   Color Palette: Black, Red, White
   Style: Glassmorphism, Bold, Modern Minimalist
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --rich-black: #0a0a0a;
    --rich-black-light: #1a1a1a;
    --rich-black-lighter: #2a2a2a;
    --premium-red: #e74c3c;
    --premium-red-dark: #c0392b;
    --premium-red-light: #ff6b5b;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--premium-red) 0%, #c0392b 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b5b 0%, #e74c3c 100%);
    --gradient-glow: radial-gradient(circle at center, var(--premium-red) 0%, transparent 70%);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(231, 76, 60, 0.15);
    --shadow-md: 0 4px 16px rgba(231, 76, 60, 0.25);
    --shadow-lg: 0 8px 32px rgba(231, 76, 60, 0.35);
    --shadow-glow: 0 0 40px rgba(231, 76, 60, 0.6);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--rich-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-10);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.logo-icon {
    color: var(--premium-red);
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--premium-red));
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--white-70);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--premium-red);
}

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

.cta-button-nav {
    padding: 0.75rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 57, 43, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--premium-red);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--premium-red);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--premium-red);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

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

.typewriter {
    border-right: 3px solid var(--premium-red);
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--white-70);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid var(--white-20);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--premium-red);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.button-icon,
.play-icon {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--premium-red);
    font-family: var(--font-secondary);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.875rem;
    color: var(--white-50);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--white-20);
}

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

.globe-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.globe-canvas {
    width: 100%;
    aspect-ratio: 1 / 1;
    filter: drop-shadow(0 0 40px rgba(231, 76, 60, 0.5));
}

/* Globe Center Logo */
.globe-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    pointer-events: none;
    animation: pulse-glow 3s ease-in-out infinite;
}

.globe-logo-icon {
    font-size: 4rem;
    color: var(--premium-red);
    filter: drop-shadow(0 0 20px var(--premium-red));
}

.globe-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2em;
    text-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(231, 76, 60, 0.5));
        opacity: 0.9;
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(231, 76, 60, 0.8));
        opacity: 1;
    }
}

@keyframes rotate-slow-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes float-globe {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--premium-red);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--premium-red);
    animation: float-particle 5s ease-in-out infinite;
}

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

.particle-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.particle-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0;
    }

    50% {
        transform: translate(20px, -20px);
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white-50);
    font-size: 0.875rem;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--white-50);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white-50);
    border-radius: 2px;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {

    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, 10px);
        opacity: 1;
    }
}

/* ===================================
   GLASSMORPHISM CARDS
   =================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--premium-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   SECTION STYLES
   =================================== */

section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--premium-red);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--premium-red);
    margin-bottom: 1.5rem;
}

.tag-icon {
    color: var(--premium-red);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--white-70);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   FLEET MANAGEMENT SECTION
   =================================== */

.fleet-section {
    background: linear-gradient(180deg, var(--rich-black) 0%, var(--rich-black-light) 100%);
}

.fleet-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.dashboard-preview {
    position: relative;
    padding: 1rem;
    overflow: hidden;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.dashboard-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    width: 100px;
    height: 100px;
    border: 3px solid var(--premium-red);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.fleet-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    padding: 0.75rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.6;
}

/* ===================================
   DIGITAL PORTFOLIO SECTION
   =================================== */

.portfolio-section {
    background: var(--rich-black-lighter);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.portfolio-showcase {
    padding: 1rem;
}

.portfolio-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.portfolio-services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    position: relative;
    padding: 2rem;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white-10);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-secondary);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.service-text {
    font-size: 1rem;
    color: var(--white-70);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--premium-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ===================================
   SMART GAMING SECTION
   =================================== */

.gaming-section {
    background: linear-gradient(180deg, var(--rich-black-lighter) 0%, var(--rich-black) 100%);
}

.gaming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.gaming-visual {
    position: relative;
    padding: 1rem;
}

.gaming-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.gaming-stats-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.gaming-stat {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--premium-red);
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: center;
    flex: 1;
}

.gaming-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--premium-red);
    font-family: var(--font-secondary);
}

.gaming-stat-label {
    font-size: 0.75rem;
    color: var(--white-70);
    margin-top: 0.25rem;
}

.gaming-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gaming-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.gaming-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--premium-red);
    transform: translateX(10px);
}

.gaming-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--premium-red));
}

.gaming-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gaming-feature p {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.6;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 4rem 0;
}

.cta-card {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: -1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.cta-text {
    font-size: 1.125rem;
    color: var(--white-70);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--rich-black-light);
    border-top: 1px solid var(--white-10);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-tagline {
    color: var(--white-70);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--white-10);
    border-radius: 50%;
    color: var(--white-70);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--premium-red);
    border-color: var(--premium-red);
    color: var(--rich-black);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    color: var(--white-70);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: var(--premium-red);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--white-10);
}

.copyright {
    color: var(--white-50);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--white-50);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--premium-red);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {

    .hero-container,
    .fleet-content,
    .portfolio-grid,
    .gaming-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .cta-button-nav {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

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

    .section-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Globe responsive adjustments */
    .globe-container {
        max-width: 100%;
        aspect-ratio: 1 / 1;
    }

    .globe-canvas {
        width: 100%;
        aspect-ratio: 1 / 1;
        display: block;
    }

    .globe-logo-icon {
        font-size: 2.5rem;
    }

    .globe-logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .gaming-stats-overlay {
        flex-direction: column;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}