@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --fox-orange: #C1511A;
    --fox-light: #E8793A;
    --fox-dark: #8B3A10;
    --fox-cream: #F5E6D3;
    --bg-main: #FFFFFF;
    --bg-alt: #FDF8F4;
    --bg-card: #FFFFFF;
    --text-primary: #1A1A2E;
    --text-secondary: #5A5A72;
    --border-light: rgba(193, 81, 26, 0.12);
    --shadow-soft: rgba(193, 81, 26, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: url('../imlec-cursor.png') 16 16, auto;
}

/* Fox trail particles */
.fox-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: foxParticleFade 0.6s ease-out forwards;
}

@keyframes foxParticleFade {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* ====== NAVBAR ====== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: rotate(-5deg) scale(1.05);
}

.nav-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fox-orange);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

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

.nav-links a:hover {
    color: var(--fox-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--fox-orange), var(--fox-light));
    transition: width 0.3s ease;
}

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

.nav-cta {
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--fox-orange), var(--fox-light));
    color: white !important;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(193, 81, 26, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(193, 81, 26, 0.4);
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--fox-orange);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ====== HERO ====== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-main);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(193, 81, 26, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(193, 81, 26, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--fox-orange);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 5s infinite;
}

@keyframes float-particle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.7; transform: scale(1); }
    90% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-500px) scale(0); }
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 81, 26, 0.08), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* Hero background scene */
.hero-scene {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 1;
    pointer-events: none;
}

.hero-scene svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(193, 81, 26, 0.2);
    border-radius: 30px;
    background: rgba(193, 81, 26, 0.06);
    color: var(--fox-dark);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fox-orange);
    animation: pulseDot 2s infinite;
}

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

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease 0.4s both;
}

.hero-title .line1 {
    display: block;
    color: var(--text-primary);
}

.hero-title .line2 {
    display: block;
    background: linear-gradient(135deg, var(--fox-orange), var(--fox-light), #FFB366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInDown 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInDown 1s ease 0.8s both;
}

.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--fox-orange), var(--fox-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 25px rgba(193, 81, 26, 0.3);
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(193, 81, 26, 0.5);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(193, 81, 26, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--fox-orange);
    background: rgba(193, 81, 26, 0.05);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--fox-orange);
    opacity: 0.6;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== STATS BAR ====== */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 20px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fox-orange), var(--fox-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ====== SECTIONS COMMON ====== */
section {
    padding: 100px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--fox-orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ====== ABOUT ====== */
#about {
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 40px rgba(193, 81, 26, 0.15));
    animation: floatImage 6s ease-in-out infinite;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    max-width: 415px;
    border: 2px solid var(--border-light);
    border-radius: 20px;
}

.about-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--fox-orange), var(--fox-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.about-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--fox-orange);
    flex-shrink: 0;
}

/* ====== GAMES ====== */
#games {
    background: var(--bg-main);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    position: relative;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(193, 81, 26, 0.25);
    box-shadow: 0 20px 60px rgba(193, 81, 26, 0.12);
}

.game-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.game-card-image .game-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.game-visual-1 {
    background: linear-gradient(135deg, #F5E6D3, #FADCC8, #F5E6D3);
}

.game-visual-2 {
    background: linear-gradient(135deg, #D3E6F5, #C8D8FA, #D3E6F5);
}

.game-visual-3 {
    background: linear-gradient(135deg, #D3F5E6, #C8FAD8, #D3F5E6);
}

.game-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--bg-card));
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.badge-mobile {
    background: rgba(193, 81, 26, 0.9);
    color: white;
}

.badge-desktop {
    background: rgba(26, 100, 193, 0.9);
    color: white;
}

.badge-soon {
    background: rgba(100, 26, 193, 0.9);
    color: white;
}

.game-card-content {
    padding: 25px;
}

.game-card-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.game-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.game-tag {
    padding: 4px 12px;
    background: rgba(193, 81, 26, 0.08);
    color: var(--fox-dark);
    border-radius: 15px;
    font-size: 0.75rem;
    border: 1px solid var(--border-light);
}

/* Geometric shapes inside game visuals */
.geo-shape {
    position: absolute;
    opacity: 0.3;
    animation: geoFloat 8s ease-in-out infinite;
}

@keyframes geoFloat {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(180deg) translateY(-20px); }
}

/* ====== SERVICES ====== */
#services {
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    position: relative;
}

.services-grid .service-card:nth-child(4) {
    grid-column: 2;
}

/* Roaming foxes in empty service grid areas */
.roaming-fox {
    position: absolute;
    bottom: 10px;
    width: 180px;
    height: 180px;
    z-index: 1;
}

.roaming-fox-left {
    left: calc(16.66% - 90px);
}

.roaming-fox-right {
    right: calc(16.66% - 90px);
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fox-orange), var(--fox-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(193, 81, 26, 0.2);
    box-shadow: 0 15px 50px rgba(193, 81, 26, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 18px;
    background: rgba(193, 81, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--fox-orange), var(--fox-light));
    transform: scale(1.1);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--fox-orange);
    transition: stroke 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: white;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ====== TECH STACK ====== */
#tech {
    background: var(--bg-main);
}

.tech-marquee {
    overflow: hidden;
    padding: 30px 0;
}

.tech-track {
    display: flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tech-item span.tech-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fox-orange);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====== TEAM ====== */
#team {
    background: var(--bg-alt);
}

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

.team-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(193, 81, 26, 0.2);
    box-shadow: 0 15px 40px rgba(193, 81, 26, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--fox-orange), var(--fox-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    font-family: 'Orbitron', sans-serif;
    position: relative;
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(193, 81, 26, 0.2);
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-card .team-role {
    color: var(--fox-orange);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ====== CONTACT ====== */
#contact {
    background: var(--bg-main);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--fox-orange), var(--fox-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.contact-detail strong {
    color: var(--text-primary);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(193, 81, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--fox-orange);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px var(--shadow-soft);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--fox-orange);
    box-shadow: 0 0 0 3px rgba(193, 81, 26, 0.1);
}

.form-group textarea {
    height: 130px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--fox-orange), var(--fox-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(193, 81, 26, 0.3);
}

/* ====== FOOTER ====== */
footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    padding: 50px 60px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--fox-orange);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--fox-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(193, 81, 26, 0.06);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-social:hover {
    background: var(--fox-orange);
    border-color: var(--fox-orange);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
    stroke: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social:hover svg {
    fill: white;
    stroke: white;
}

/* ====== SCROLL ANIMATIONS ====== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* ====== RESPONSIVE ====== */
@media (max-width: 968px) {
    nav { padding: 15px 30px; }
    nav.scrolled { padding: 10px 30px; }
    section { padding: 80px 30px; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px;
        gap: 25px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border-light);
    }

    .nav-links.open { right: 0; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-image { display: flex; justify-content: center; }
    .about-features { justify-content: center; }

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

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

    .stats-bar { gap: 30px; }

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

    .services-grid .service-card:nth-child(4) {
        grid-column: auto;
    }

    .roaming-fox { display: none; }
}

@media (max-width: 600px) {
    .games-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    section { padding: 60px 20px; }
    .stats-bar { flex-direction: column; gap: 20px; }
}
