:root {
    /* Color Scheme */
    --primary: #0B1A2A;      /* Midnight Blue */
    --secondary: #12263A;    /* Deep Steel */
    --accent-1: #FF7A7A;     /* Soft Coral */
    --accent-2: #4FC3F7;     /* Cool Cyan */
    --highlight: #9ADCFB;    /* Light Sky */
    --text-primary: #F5F9FC; /* Soft White */
    --text-secondary: #B8C7D6; /* Pale Blue Gray */
    --divider: #1C3552;      /* Muted Navy */
    --bg-dark: #0A1520;      /* Dark background */
    
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

a {
    color: var(--accent-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--highlight);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 2.25rem;
    color: var(--text-primary);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-1);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--highlight);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-2);
    color: var(--accent-2);
}

.btn-outline:hover {
    background: var(--accent-2);
    color: var(--primary);
}

/* Header */
.header {
    background-color: #06062488;
    padding: var(--space-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--space-xs) 0;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-2);
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 8rem 0 10rem;
    position: relative;
    color: var(--text-light);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zm63 31c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zM34 90c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zm56-76c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23.5 12.5c1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5 1.12 2.5 2.5 2.5zM8 29c0 1.38 1.12 2.5 2.5 2.5S13 30.38 13 29s-1.12-2.5-2.5-2.5S8 27.62 8 29zm60 17.5c1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5 1.12 2.5 2.5 2.5zM12 68c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

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

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.game-console {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    transform: rotate3d(0.5, 1, 0, 15deg) translateZ(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.hero-image:hover .game-console {
    transform: rotate3d(0.2, 0.5, 0, 5deg) translateZ(0);
}

.console-screen {
    background: #0a1622;
    border-radius: 1rem 1rem 0 0;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gameplay-preview {
    background: linear-gradient(135deg, #1a2a3a, #0e1a26);
    border-radius: 0.5rem;
    height: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.game-ui {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.character, .enemy, .collectible {
    position: absolute;
    border-radius: 50%;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.character {
    width: 20px;
    height: 30px;
    background: #4FC3F7;
    bottom: 30px;
    left: 30%;
    animation-name: characterMove;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.7);
}

.enemy {
    width: 18px;
    height: 18px;
    background: #FF5252;
    top: 40%;
    right: 20%;
    animation-name: enemyMove;
    box-shadow: 0 0 8px rgba(255, 82, 82, 0.7);
}

.collectible {
    width: 12px;
    height: 12px;
    background: #FFD740;
    top: 60%;
    left: 60%;
    animation-name: collectibleGlow;
    box-shadow: 0 0 15px rgba(255, 215, 64, 0.8);
}

.console-body {
    background: #1a1e26;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.d-pad {
    width: 80px;
    height: 80px;
    position: relative;
}

.d-pad-center, .d-pad-up, .d-pad-right, .d-pad-down, .d-pad-left {
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

.d-pad-center {
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
}

.d-pad-up, .d-pad-down {
    width: 30px;
    height: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.d-pad-up {
    top: 0;
    border-radius: 4px 4px 0 0;
}

.d-pad-down {
    bottom: 0;
    border-radius: 0 0 4px 4px;
}

.d-pad-left, .d-pad-right {
    width: 15px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.d-pad-left {
    left: 0;
    border-radius: 4px 0 0 4px;
}

.d-pad-right {
    right: 0;
    border-radius: 0 4px 4px 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.btn-a, .btn-b {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff5252, #e64a4a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 4px 0 #c62828, 0 6px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-b {
    background: linear-gradient(145deg, #4CAF50, #43A047);
    box-shadow: 0 4px 0 #2E7D32, 0 6px 10px rgba(0, 0, 0, 0.3);
}

.btn-a:active, .btn-b:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #c62828, 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-b:active {
    box-shadow: 0 2px 0 #2E7D32, 0 4px 6px rgba(0, 0, 0, 0.3);
}

@keyframes characterMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes enemyMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-5px, -5px); }
    50% { transform: translate(0, -10px); }
    75% { transform: translate(5px, -5px); }
}

@keyframes collectibleGlow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.floating-avatars {
    display: flex;
    position: absolute;
    bottom: -1.5rem;
    left: 2rem;
    z-index: 2;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 3px solid var(--primary);
    background: var(--accent-1);
    margin-left: -0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.avatar:first-child {
    margin-left: 0;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    transform: rotateY(180deg);
}

.hero-wave .shape-fill {
    fill: var(--bg-light);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 195, 247, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0);
    }
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zm63 31c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zM34 90c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zm56-76c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23.5 12.5c1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5 1.12 2.5 2.5 2.5zM8 29c0 1.38 1.12 2.5 2.5 2.5S13 30.38 13 29s-1.12-2.5-2.5-2.5S8 27.62 8 29zm60 17.5c1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5 1.12 2.5 2.5 2.5zM12 68c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

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

.about-text .section-header {
    text-align: left;
    max-width: none;
    margin: 0 0 3rem;
}

.about-text .section-subtitle {
    color: var(--accent-2);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
    padding-left: 2.5rem;
    position: relative;
}

.about-text .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--accent-2);
    transform: translateY(-50%);
}

.about-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.about-text .section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-story {
    margin-bottom: 3rem;
}

.about-story h3 {
    color: var(--accent-1);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-story p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 195, 247, 0.2);
    transform: translateX(5px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--text-secondary);
}

.image-placeholder svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.image-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}

.about-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-mini {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-mini:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: rgba(79, 195, 247, 0.2);
    transform: translateY(-3px);
}

.stat-number-mini {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-2);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label-mini {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Platform Section */
.about-platform {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-platform .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-platform .section-subtitle {
    display: inline-block;
    color: var(--accent-2);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.about-platform .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--accent-2);
    transform: translateY(-50%);
}

.about-platform .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.about-platform .section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    opacity: 0.9;
}

/* Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
    color: var(--accent-2);
    font-size: 1.75rem;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.03), rgba(79, 195, 247, 0.01));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(79, 195, 247, 0.2);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-2);
    font-size: 1.5rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

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

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-2);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--accent-1);
    transform: translateX(5px);
}

.learn-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(5px);
}

/* CTA Section */
.about-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(79, 195, 247, 0.05));
    border: 1px solid rgba(79, 195, 247, 0.1);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    opacity: 0.5;
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-us {
        padding: 5rem 0;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-text .section-title {
        font-size: 2.2rem;
    }
    
    .about-platform {
        padding: 5rem 0;
    }
    
    .about-platform .section-title {
        font-size: 2.2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text .section-title {
        font-size: 2rem;
    }
    
    .about-text .section-description {
        font-size: 1.1rem;
    }
    
    .about-values {
        gap: 1rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .about-stats-mini {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-platform .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-cta {
        padding: 3rem 1.5rem;
    }
    
    .about-cta h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 3rem 0;
    }
    
    .about-text .section-title {
        font-size: 1.8rem;
    }
    
    .about-text .section-description {
        font-size: 1rem;
    }
    
    .about-story h3 {
        font-size: 1.3rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .about-platform .section-title {
        font-size: 1.8rem;
    }
    
    .about-platform .section-description {
        font-size: 1.1rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .about-cta {
        padding: 2.5rem 1.25rem;
    }
    
    .about-cta h3 {
        font-size: 1.5rem;
    }
    
    .about-cta p {
        font-size: 1rem;
    }
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.key-points {
    display: grid;
    gap: var(--space-md);
}

.point {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-2);
}

.point h3 {
    color: var(--accent-2);
    margin-bottom: var(--space-xs);
}

/* Features */
.features {
    padding: var(--space-xl) 0;
    background-color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

/* Games Showcase */
.games-showcase {
    padding: var(--space-xl) 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.games-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(79, 195, 247, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 122, 122, 0.1) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0.5rem auto 0;
    line-height: 1.6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.game-card {
    background: linear-gradient(145deg, var(--secondary), var(--primary));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-card-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-tag {
    display: inline-block;
    background: var(--accent-1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.game-tag.new {
    background: var(--accent-2);
}

.game-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-thumbnail img {
    transform: scale(1.05);
}

.game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.game-category {
    color: var(--accent-2);
    font-weight: 500;
}

.game-info h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}

.btn-play {
    background: var(--accent-2);
    color: var(--primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    text-align: center;
}

.btn-play:hover {
    background: var(--highlight);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.3);
}

.view-all-games {
    text-align: center;
    margin-top: 3rem;
}

.view-all-games .btn-outline {
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    border-width: 2px;
    transition: all 0.3s ease;
}

.view-all-games .btn-outline:hover {
    background: var(--accent-2);
    color: var(--primary);
    border-color: var(--accent-2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.3);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.9) 0%, rgba(13, 29, 47, 0.95) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zm63 31c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zM34 90c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zm56-76c1.657 0 3-1.344 3-3 0-1.657-1.343-3-3-3s-3 1.343-3 3c0 1.656 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23.5 12.5c1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5 1.12 2.5 2.5 2.5zM8 29c0 1.38 1.12 2.5 2.5 2.5S13 30.38 13 29s-1.12-2.5-2.5-2.5S8 27.62 8 29zm60 17.5c1.38 0 2.5-1.12 2.5-2.5s-1.12-2.5-2.5-2.5-2.5 1.12-2.5 2.5 1.12 2.5 2.5 2.5zM12 68c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z' fill='%233a5a7a' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

.disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.disclaimer-icon {
    color: var(--accent-1);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.disclaimer-icon svg {
    width: 32px;
    height: 32px;
}

.disclaimer-text h3 {
    color: var(--accent-2);
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.disclaimer-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .disclaimer-icon {
        margin-bottom: 0.5rem;
    }
    
    .disclaimer-text h3 {
        font-size: 1.1rem;
    }
    
    .disclaimer-text p {
        font-size: 0.9rem;
    }
}

/* Info Strip */
.info-strip {
    background-color: var(--divider);
    padding: var(--space-md) 0;
    position: relative;
    z-index: 1;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.info-icon {
    color: var(--accent-2);
    flex-shrink: 0;
}

.info-strip p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-strip a {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.info-strip a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-2);
}

.footer-bottom {
    border-top: 1px solid var(--divider);
    padding-top: var(--space-md);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: var(--space-xs);
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .game-console {
        max-width: 260px;
    }
    
    .console-body {
        padding: 1.5rem 1rem 1rem;
    }
    
    .d-pad {
        width: 70px;
        height: 70px;
    }
    
    .btn-a, .btn-b {
        width: 36px;
        height: 36px;
        font-size: 0.7rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .game-preview {
        grid-template-columns: 1fr;
    }
    
    .game-image {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 5rem;
    }
    
    .game-console {
        max-width: 300px;
    }
    
    .console-screen {
        padding: 1rem;
    }
    
    .gameplay-preview {
        height: 180px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        padding: 0.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}}
