/* ===========================
   ENFES GAMES
   Professional Game Studio Theme
   =========================== */

:root {
    --primary: #C8262F;
    --primary-dark: #9E1C24;
    --primary-darker: #7A151C;
    --primary-light: #E63946;
    --primary-soft: #FFF0F1;
    --primary-soft-2: #FFE0E3;

    --black: #0A0A0B;
    --dark: #141416;
    --dark-2: #1C1C1F;
    --dark-3: #28282C;
    --charcoal: #3A3A40;

    --white: #FFFFFF;
    --off-white: #FAFAFB;
    --light: #F5F5F7;
    --border: #E8E8EB;
    --muted: #6B6B73;
    --text: #1C1C1F;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-xs: 0 1px 2px rgba(10, 10, 11, 0.04);
    --shadow-sm: 0 2px 8px rgba(10, 10, 11, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 10, 11, 0.08);
    --shadow-lg: 0 20px 48px rgba(10, 10, 11, 0.12);
    --shadow-xl: 0 32px 80px rgba(10, 10, 11, 0.16);
    --shadow-red: 0 20px 48px rgba(200, 38, 47, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container: 1280px;
}

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

*::selection {
    background: var(--primary);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    padding: 10px 0;
    position: relative;
    z-index: 101;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-left {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left svg {
    width: 14px;
    height: 14px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--white);
}

.top-bar-right svg {
    width: 14px;
    height: 14px;
    display: block;
}

.top-bar-right .divider {
    opacity: 0.3;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 100;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-xs);
}

.nav-container {
    padding-top: 18px;
    padding-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover .logo-img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0 auto;
}

.nav-link {
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    letter-spacing: -0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    letter-spacing: -0.01em;
    box-shadow: 0 4px 12px rgba(200, 38, 47, 0.25);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 38, 47, 0.35);
    color: var(--white);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: calc(100vh - 140px);
    background:
        linear-gradient(135deg, #FAFAFB 0%, #FFFFFF 100%);
    overflow: hidden;
    padding: 80px 0 120px;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(200, 38, 47, 0.06) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.8;
}

.hero-gradient {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 38, 47, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 28px;
    box-shadow: var(--shadow-xs);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(200, 38, 47, 0.15);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(200, 38, 47, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(200, 38, 47, 0.05); }
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.text-accent {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--primary-soft);
    z-index: -1;
    border-radius: 6px;
}

.hero-description {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    font-family: inherit;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(200, 38, 47, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 38, 47, 0.4);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-ghost:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.hero-meta {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.meta-item strong {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.meta-item span {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 500;
}

.meta-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-logo-wrap {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    box-shadow: var(--shadow-red);
    animation: morph 12s ease-in-out infinite;
}

.hero-logo-bg::before {
    content: '';
    position: absolute;
    inset: 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: inherit;
    opacity: 0.6;
    animation: morph 8s ease-in-out infinite reverse;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
    33% { border-radius: 55% 45% 40% 60% / 50% 55% 45% 50%; }
    66% { border-radius: 45% 55% 60% 40% / 55% 45% 50% 45%; }
}

.hero-logo-plate {
    position: relative;
    z-index: 2;
    width: 78%;
    aspect-ratio: 1 / 1;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    animation: floaty 6s ease-in-out infinite;
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
}

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

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
    animation: floaty 5s ease-in-out infinite;
}

.floating-card strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 2px;
    font-family: 'Manrope', sans-serif;
}

.floating-card span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
    flex-shrink: 0;
}

.card-icon.red {
    background: var(--primary);
    color: var(--white);
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card-1 {
    top: 50px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 80px;
    right: -20px;
    animation-delay: 2s;
}

.card-3 {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
    background: var(--white);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--muted);
    margin-bottom: 28px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: var(--radius);
    color: var(--muted);
    transition: var(--transition);
}

.trust-item:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

.trust-item svg {
    width: 28px;
    height: 28px;
}

.trust-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* ===========================
   SECTION COMMON
   =========================== */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    padding: 6px 14px;
    background: var(--primary-soft);
    border-radius: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.section-header.light .section-title,
.section-header.light h2 {
    color: var(--white);
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    height: 540px;
}

.visual-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.visual-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.visual-card.main {
    grid-column: 1 / -1;
    grid-row: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px;
}

.visual-card.main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.visual-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.visual-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.visual-card-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.visual-card-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 280px;
}

.visual-logo-watermark {
    height: 80px;
    opacity: 0.15;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

.visual-card.stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.stat-big {
    font-family: 'Manrope', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.stat-big span {
    font-size: 32px;
}

.visual-card .stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.visual-card.accent {
    background: var(--text);
    color: var(--white);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.visual-card.accent svg {
    width: 40px;
    height: 40px;
    color: var(--primary-light);
}

.visual-card.accent strong {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.about-text .section-tag {
    margin-bottom: 20px;
}

.about-text .section-title {
    font-size: clamp(32px, 3.5vw, 44px);
    text-align: left;
    margin-bottom: 24px;
}

.about-lead {
    font-size: 19px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.75;
}

.about-text p strong {
    color: var(--text);
    font-weight: 600;
}

.about-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight:hover {
    border-color: var(--primary);
    transform: translateX(6px);
}

.highlight svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    background: var(--primary-soft);
    border-radius: 50%;
    padding: 4px;
}

.highlight span {
    font-weight: 600;
    color: var(--text);
}

/* ===========================
   MISSION / VALUES SECTION
   =========================== */
.mission {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 38, 47, 0.18) 0%, transparent 60%);
    border-radius: 50%;
}

.mission::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 38, 47, 0.12) 0%, transparent 60%);
    border-radius: 50%;
}

.mission .container {
    position: relative;
    z-index: 1;
}

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

.mission-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 44px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-number {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-darker) 100%);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(200, 38, 47, 0.4);
}

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

.mission-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.mission-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-item {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.value-item:hover {
    background: rgba(200, 38, 47, 0.1);
    border-color: rgba(200, 38, 47, 0.3);
    transform: translateY(-4px);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 38, 47, 0.15);
    color: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--primary);
    color: var(--white);
}

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

.value-item h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* ===========================
   GAMES SECTION
   =========================== */
.games {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.games::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -300px;
    width: 500px;
    height: 500px;
    background: var(--primary-soft);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.games .container {
    position: relative;
    z-index: 1;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.game-tile {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.game-tile:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.game-tile-media {
    position: relative;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-tile-media::before {
    content: '';
    position: absolute;
    inset: 0;
    transition: transform 0.8s ease;
}

.game-tile:hover .game-tile-media::before {
    transform: scale(1.06);
}

.game-tile-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.grad-mafia::before {
    background:
        radial-gradient(circle at 30% 30%, #3D2B2B 0%, #1A1414 60%, #0A0808 100%);
}

.grad-ts2::before {
    background:
        radial-gradient(circle at 30% 20%, #2A2A2E 0%, #141416 60%, #0A0A0B 100%);
}

.grad-ticarion::before {
    background:
        radial-gradient(circle at 30% 30%, #3E3928 0%, #1E1C15 60%, #0F0E0A 100%);
}

.grad-ts1::before {
    background:
        radial-gradient(circle at 30% 30%, #403225 0%, #1F1912 60%, #100D08 100%);
}

.game-tile-logo-wrap {
    position: relative;
    z-index: 1;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.game-tile:hover .game-tile-logo-wrap {
    transform: scale(1.06) rotate(-2deg);
}

.game-tile-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.game-year-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    z-index: 2;
}

.game-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.game-status.released {
    background: rgba(16, 185, 129, 0.25);
    color: #6EE7B7;
    border: 1px solid rgba(16, 185, 129, 0.5);
}

.game-status.released::before {
    content: '●';
    margin-right: 5px;
    color: #10B981;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.game-status.new {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 12px rgba(200, 38, 47, 0.4);
}

.game-tile-body {
    padding: 32px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-tile-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 4px 10px;
    border-radius: 5px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.game-tile-body h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.game-tile-body p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14.5px;
    flex: 1;
}

.game-tile-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.game-tile-tags span {
    padding: 6px 12px;
    background: var(--light);
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.game-tile:hover .game-tile-tags span {
    background: var(--primary-soft);
    color: var(--primary);
    border-color: var(--primary-soft-2);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta {
    padding: 80px 0;
    background: var(--off-white);
}

.cta-box {
    background: linear-gradient(135deg, var(--text) 0%, var(--dark-2) 100%);
    border-radius: var(--radius-xl);
    padding: 64px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 38, 47, 0.2) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 38, 47, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-text,
.cta-action {
    position: relative;
    z-index: 1;
}

.cta-text .section-tag {
    background: rgba(200, 38, 47, 0.2);
    color: var(--primary-light);
    margin-bottom: 20px;
}

.cta-text h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 480px;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.cta-small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-small a {
    color: var(--primary-light);
    font-weight: 600;
}

.cta-small a:hover {
    color: var(--white);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: stretch;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-content: start;
}

.contact-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

.contact-details h4 a {
    color: var(--text);
}

.contact-details h4 a:hover {
    color: var(--primary);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    min-height: 480px;
    background: var(--white);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
    filter: grayscale(20%);
    transition: var(--transition);
}

.contact-map:hover iframe {
    filter: grayscale(0%);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 340px;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a svg {
    width: 16px;
    height: 16px;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: -0.01em;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-new {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 7px;
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 4px;
    vertical-align: middle;
    line-height: 1.4;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list svg {
    width: 16px;
    height: 16px;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom strong {
    color: var(--white);
    font-weight: 700;
}

.footer-bottom a {
    color: var(--primary-light);
    font-weight: 600;
}

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

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(200, 38, 47, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    color: var(--white);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-logo-wrap {
        width: 320px;
        height: 320px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

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

    .cta-box {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px;
    }

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

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .top-bar {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 88px;
        left: 16px;
        right: 16px;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border: 1px solid var(--border);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        display: block;
        padding: 14px 20px;
        width: 100%;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 80px 0;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-meta {
        gap: 20px;
        flex-wrap: wrap;
    }

    .meta-item strong {
        font-size: 22px;
    }

    .hero-visual {
        height: 360px;
    }

    .hero-logo-wrap {
        width: 280px;
        height: 280px;
    }

    .floating-card {
        padding: 12px 16px;
    }

    .floating-card strong {
        font-size: 13px;
    }

    .floating-card span {
        font-size: 11px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-item {
        padding: 12px 8px;
    }

    .about-visual {
        height: auto;
        grid-template-columns: 1fr;
    }

    .visual-card.main {
        grid-column: 1;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 16px;
    }

    .mission-card {
        padding: 32px 24px;
    }

    .mission-card h3 {
        font-size: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .game-tile-media {
        height: 220px;
    }

    .game-tile-title h3 {
        font-size: 26px;
    }

    .game-tile-body,
    .game-tile-media {
        padding: 24px;
    }

    .cta-box {
        padding: 40px 28px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .about-text .section-title {
        font-size: 30px;
    }

    .about-lead {
        font-size: 17px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-title {
        font-size: 34px;
    }

    .card-1 {
        left: -10px;
        top: 20px;
    }

    .card-2 {
        right: -10px;
        bottom: 40px;
    }

    .meta-divider {
        display: none;
    }

    .hero-meta {
        gap: 16px;
    }

    .footer-legal {
        gap: 12px;
        justify-content: center;
    }
}
