/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors (from logo) */
    --primary-orange: #FF6B35;
    --primary-purple: #7B2CBF;
    --primary-cyan: #4CC9F0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;

    /* ===== THEME VARIABLES (Light Mode defaults) ===== */
    --bg-body: #ffffff;
    --bg-surface: #f8f9fa;
    --bg-card: #ffffff;
    --bg-header: #ffffff;

    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
    --text-light-on-dark: #e0e0e0;

    --border-color: #e0e0e0;
    --border-dashed: #e0e0e0;
    
    --input-bg: #ffffff;
    --input-border: #e0e0e0;

    --faq-bg: #f8f9fa;
    --faq-active-bg: #ffffff;
    
    --no-positions-bg: #f8f9fa;
    
    --footer-bg: #1a1a2e;
    --footer-text: #e0e0e0;
    
    --mission-bg: #1a1a2e;
    --mission-text: #e0e0e0;
    --mission-title: #ffffff;
    
    --cta-section-bg: var(--gradient-primary);
    
    --social-link-bg: rgba(255,255,255,0.1);
    --social-link-hover: var(--primary-purple);
}

/* ===== DARK THEME VARIABLES ===== */
body.dark-theme {
    --bg-body: #0f0f1e;
    --bg-surface: #1a1a2e;
    --bg-card: #16213e;
    --bg-header: #16213e;

    --text-primary: #e0e0e0;
    --text-secondary: #a0a8b8;
    --text-light-on-dark: #c0c8d8;

    --border-color: #2a2a4e;
    --border-dashed: #3a3a5e;

    --input-bg: #1a1a2e;
    --input-border: #3a3a5e;

    --faq-bg: #1a1a2e;
    --faq-active-bg: #16213e;

    --no-positions-bg: #1a1a2e;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-body);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-header);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: #ffffff;
}

.lang-btn:hover {
    transform: translateY(-2px);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    font-size: 18px;
    cursor: pointer;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-sm);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 90px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #e0e0e0;
    z-index: 1;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    transform: rotate(-45deg);
    margin: 10px auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(-10px) rotate(-45deg);
    }
    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: #1a1a2e;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #16213e;
    transform: translateY(-3px);
}

.gettoknowus {
    color: #ffffff;
    background: var(--gradient-primary);
}

.gettoknowus:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FANTASY MATCH SECTION ===== */
.fantasy-match {
    background: var(--bg-surface);
}

.game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.game-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.game-features {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

.store-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.store-btn {
    display: block;
    height: 50px;
}

.store-btn img {
    height: 100%;
    width: auto;
}

.game-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== MISSION SECTION ===== */
/* Mission section always stays dark — it's a design decision, not a theme component */
.mission {
    background: #1a1a2e;
    color: #ffffff;
}

.mission .section-title {
    color: #ffffff;
}

.mission .section-label {
    color: #ffffff;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mission-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== BLOG TEASER ===== */
.blog-teaser {
    background: var(--bg-body);
}

.blog-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.blog-post {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 30px;
}

.post-date {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.post-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.post-excerpt {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.post-link {
    color: var(--primary-purple);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.post-link:hover {
    gap: 10px;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: var(--gradient-hero);
    color: #ffffff;
    text-align: center;
    padding: 150px 0 80px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-subtitle {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    background: var(--bg-body);
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--bg-surface);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-purple);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.member-role {
    font-size: 14px;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== VALUES SECTION ===== */
.values {
    background: var(--bg-body);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-surface);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ffffff;
}

/* ===== CAREERS PAGE ===== */
.why-join {
    background: var(--bg-surface);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== OPEN POSITIONS ===== */
.open-positions {
    background: var(--bg-body);
}

.no-positions {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--no-positions-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.no-positions-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.no-positions h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.no-positions p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FORMS ===== */
.application-form,
.contact-section {
    background: var(--bg-surface);
}

.form-wrapper,
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2,
.contact-form-wrapper h2 {
    color: var(--text-primary);
}

.form-header p,
.contact-form-wrapper > p {
    color: var(--text-secondary);
}

.career-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--input-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: var(--input-bg);
    color: var(--text-primary);
}

.form-group select option {
    background: var(--input-bg);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 2px dashed var(--border-dashed);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    background: var(--input-bg);
}

.file-label:hover {
    border-color: var(--primary-purple);
    background: var(--bg-surface);
}

.file-icon {
    font-size: 20px;
}

.file-name {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}

/* ===== CONTACTS PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.method-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.method-content a {
    color: var(--primary-purple);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.method-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.social-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.social-link-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link-large svg {
    width: 24px;
    height: 24px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--bg-body);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--faq-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.faq-item.active {
    background: var(--faq-active-bg);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-purple);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
/* Footer is always dark — by design */
.footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    color: #e0e0e0;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links,
.footer-contacts {
    list-style: none;
}

.footer-links li,
.footer-contacts li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contacts a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
    color: #e0e0e0;
}

.footer-links a:hover,
.footer-contacts a:hover {
    opacity: 1;
    color: var(--primary-cyan);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: #e0e0e0;
}

.social-link:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    color: #e0e0e0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--bg-header);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .game-content,
    .mission-content,
    .story-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .game-gallery {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
    
    .nav {
        padding: 15px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .store-buttons {
        flex-direction: column;
    }
}