/* ===================================
   ONETOK Gaming Platform - Main Styles
   Rich Visual Effects & Animations
   =================================== */

/* === CSS VARIABLES === */
:root {
    --dark-bg: #0D0D0D;
    --lighter-dark: #141414;
    --dark-red: #120808;
    --dark-orange: #120A06;
    --deep-red: #3D0000;
    --deep-orange: #3D1500;
    --orange-glow: #FF6B00;
    --red-glow: #FF0000;
    --text-light: #FFFFFF;
    --text-gray: #B0B0B0;
    --gradient-1: linear-gradient(135deg, #FF6B00, #FF0000);
    --gradient-2: linear-gradient(135deg, #3D1500, #3D0000);
    --font-main: 'Inter', sans-serif;
    --font-accent: 'Orbitron', sans-serif;
}

/* === GLOBAL RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

/* === ANIMATED BACKGROUND CANVAS === */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* === AURORA BACKGROUND EFFECT === */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(138, 43, 226, 0.15) 0%,
        rgba(255, 107, 0, 0.15) 33%,
        rgba(255, 0, 0, 0.15) 66%,
        rgba(138, 43, 226, 0.15) 100%
    );
    background-size: 200% 100%;
    animation: auroraShift 10s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes auroraShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

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

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

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

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

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--orange-glow);
    margin: 3px 0;
    transition: 0.3s;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Hero Animated Background */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--dark-bg) 0%,
        var(--deep-red) 25%,
        var(--deep-orange) 50%,
        var(--deep-red) 75%,
        var(--dark-bg) 100%
    );
    background-size: 400% 400%;
    animation: gradientMesh 15s ease infinite;
    opacity: 0.6;
    z-index: -1;
}

@keyframes gradientMesh {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.hexagon {
    width: 100px;
    height: 100px;
    background: var(--orange-glow);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 40px var(--orange-glow);
}

.diamond {
    width: 80px;
    height: 80px;
    background: var(--red-glow);
    transform: rotate(45deg);
    box-shadow: 0 0 40px var(--red-glow);
}

.shape:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.shape:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(30px) rotate(270deg);
    }
}

/* Hero Content */
.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--orange-glow);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--orange-glow);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

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

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
}

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

.btn-secondary:hover {
    background: var(--orange-glow);
    color: var(--dark-bg);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 0, 0.8); }
}

/* === SECTIONS === */
section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--dark-bg);
}

.section-lighter {
    background: var(--lighter-dark);
}

.section-dark-red {
    background: var(--dark-red);
}

.section-dark-orange {
    background: var(--dark-orange);
}

.section-title {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Dividers */
.section-divider-top,
.section-divider-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0.5;
}

.section-divider-top {
    top: 0;
}

.section-divider-bottom {
    bottom: 0;
}

/* === BACKGROUND PATTERNS === */
.dot-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 107, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.stripe-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 0, 0.05) 10px,
        rgba(255, 107, 0, 0.05) 20px
    );
    pointer-events: none;
}

.circuit-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255, 107, 0, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 107, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.geometric-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(255, 107, 0, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 107, 0, 0.05) 87.5%, rgba(255, 107, 0, 0.05)),
        linear-gradient(150deg, rgba(255, 107, 0, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(255, 107, 0, 0.05) 87.5%, rgba(255, 107, 0, 0.05));
    background-size: 80px 140px;
    pointer-events: none;
}

/* === FEATURES SECTION === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-accent);
    margin-bottom: 1rem;
    color: var(--orange-glow);
}

.glow-card {
    border: 1px solid rgba(255, 107, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.glow-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-glow);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.3);
}

/* === STATS SECTION === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

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

.stat-number {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

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

/* === CTA SECTION === */
.cta {
    text-align: center;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

/* === CONTACT SECTION === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: var(--font-accent);
    margin-bottom: 2rem;
    color: var(--orange-glow);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item .icon {
    font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange-glow);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

/* === PAGE HEADER === */
.page-header {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* === GAMES PAGE === */
.games-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--text-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--orange-glow);
    color: var(--dark-bg);
    border-color: var(--orange-glow);
}

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

.game-card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.neon-border {
    border: 2px solid rgba(255, 107, 0, 0.3);
    position: relative;
}

.neon-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(45deg, transparent 30%, var(--orange-glow) 50%, transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-border:hover::after {
    opacity: 1;
    animation: neonSweep 1.5s linear infinite;
}

@keyframes neonSweep {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.4);
}

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

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.gradient-bg {
    background: var(--gradient-2);
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    background: var(--orange-glow);
    color: var(--dark-bg);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.game-badge.new {
    background: #00FF00;
}

.game-content {
    padding: 1.5rem;
}

.game-content h3 {
    font-family: var(--font-accent);
    margin-bottom: 0.5rem;
    color: var(--orange-glow);
}

.game-category {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coming-soon-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.coming-soon-card .placeholder-img {
    height: 180px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon-large {
    font-size: 6rem !important;
}

.coming-soon-card h3 {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--orange-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-card .game-category {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.coming-soon-desc {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.coming-soon-date {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-1);
    color: var(--dark-bg);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* === ABOUT PAGE === */
.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.value-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: var(--font-accent);
    margin-bottom: 1rem;
    color: var(--orange-glow);
}

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

.team-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.gradient-border {
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.8)),
        var(--gradient-1);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
}

.gradient-border:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.team-card h3 {
    font-family: var(--font-accent);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--orange-glow);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-gray);
    line-height: 1.6;
}

.timeline-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

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

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--orange-glow);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--orange-glow);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content h3 {
    font-family: var(--font-accent);
    color: var(--orange-glow);
    margin-bottom: 0.5rem;
}

/* === LEGAL PAGES === */
.legal-content {
    padding: 80px 0;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-accent);
    color: var(--orange-glow);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    font-family: var(--font-accent);
    color: var(--text-light);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.legal-section strong {
    color: var(--orange-glow);
    font-weight: 700;
}

.legal-section a {
    color: var(--orange-glow);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--red-glow);
}

.highlight-section {
    background: rgba(255, 107, 0, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 0, 0.3);
}

.highlight-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-box {
    background: rgba(13, 13, 13, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box strong {
    color: var(--orange-glow);
}

/* Hiring Card Special Style */
.hiring-card {
    position: relative;
    animation: hiringPulse 3s ease-in-out infinite;
}

.hiring-card::before {
    content: '✨ JOIN US ✨';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: hiringBadge 2s ease-in-out infinite;
}

.hiring-card .team-avatar {
    animation: hiringIconBounce 2s ease-in-out infinite;
}

@keyframes hiringPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 0, 0.6);
    }
}

@keyframes hiringBadge {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

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

/* === FOOTER === */
.footer {
    background: var(--dark-bg);
    border-top: 2px solid rgba(255, 107, 0, 0.3);
    padding: 50px 0 20px;
}

.footer-container {
    position: relative;
}

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

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--text-gray);
}

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

.footer-column h4 {
    font-family: var(--font-accent);
    color: var(--orange-glow);
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--orange-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--text-gray);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 13, 13, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translateX(0);
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* === ANIMATIONS === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}