/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --color-primary: #667eea;
    --color-secondary: #764ba2;
    --color-accent: #22c55e;
    --color-background: #0a0a0f;
    --color-surface: #1a1a2e;
    --color-text-primary: #ffffff;
    --color-text-secondary: #cbd5e1;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(255, 255, 255, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-text: linear-gradient(135deg, var(--color-text-primary) 0%, #e0e7ff 100%);
    --gradient-surface: linear-gradient(135deg, var(--color-background) 0%, var(--color-surface) 50%, #16213e 100%);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(102, 126, 234, 0.4);
    --shadow-md: 0 8px 25px rgba(102, 126, 234, 0.6);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-header: 1001;
    --z-modal: 1002;
    --z-tooltip: 1003;
}

/* ===== CSS RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-primary);
    color: var(--color-text-primary);
    padding: var(--spacing-sm);
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: var(--z-modal);
    transition: top var(--transition-normal);
}

.skip-link:focus {
    top: 6px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    gap: var(--spacing-xl);
}

/* ===== NAVIGATION COLUMNS ===== */
.nav__column {
    display: flex;
    align-items: center;
    min-height: 60px;
}

.nav__column--divisions {
    justify-content: flex-start;
    flex: 1;
}

.nav__column--products {
    justify-content: center;
    flex: 1;
}

.nav__column--navigation {
    justify-content: flex-end;
    flex: 1;
}

.nav__column--navigation .nav__menu {
    justify-content: flex-end;
    gap: 2.5rem;
    margin-right: 0;
    width: 100%;
}

/* Visual separation between columns */
.nav__column--products {
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    padding: 0 var(--spacing-xl);
}

/* ===== PRODUCT SELECTOR ===== */
.nav__product-selector {
    position: relative;
    display: flex;
    align-items: center;
    z-index: var(--z-header);
}

.product-dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-border-hover);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.product-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.product-current {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.product-icon {
    font-size: 1.2rem;
}

.product-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-arrow {
    transition: transform var(--transition-normal);
}

.product-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===== DIVISION SELECTOR ===== */
.nav__division-selector {
    position: relative;
    display: flex;
    align-items: center;
    z-index: var(--z-header);
}

.division-dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-border-hover);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.division-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.division-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.division-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.division-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.division-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* ===== DROPDOWN MENUS ===== */
.product-dropdown,
.division-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    min-width: 480px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-bounce);
    z-index: var(--z-dropdown);
    box-shadow: var(--shadow-lg);
}

.product-dropdown[aria-hidden="false"],
.division-dropdown[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Hover effects for dropdown toggles */
.product-dropdown-toggle:hover + .product-dropdown,
.division-dropdown-toggle:hover + .division-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Debug: Show dropdowns when aria-hidden is false */
.product-dropdown[aria-hidden="false"],
.division-dropdown[aria-hidden="false"] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.dropdown-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.dropdown-header h3 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.dropdown-header p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* Responsive products grid */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all var(--transition-normal);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.product-card--active {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
}

.product-card__icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}

.product-card__content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.product-card__content p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.product-status {
    font-size: 0.75rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(34, 197, 94, 0.2);
    color: var(--color-accent);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

/* ===== DIVISIONS GRID ===== */
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* Responsive divisions grid */
@media (min-width: 1201px) and (max-width: 1400px) {
    .divisions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .divisions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.division-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.division-card:nth-child(1) { animation-delay: 0.1s; }
.division-card:nth-child(2) { animation-delay: 0.2s; }
.division-card:nth-child(3) { animation-delay: 0.3s; }
.division-card:nth-child(4) { animation-delay: 0.4s; }
.division-card:nth-child(5) { animation-delay: 0.5s; }

.division-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.division-card--active {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
}

.division-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}

.division-card__icon svg {
    color: white;
}

.division-card__content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.division-card__content p {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.division-status {
    font-size: 0.7rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(34, 197, 94, 0.2);
    color: var(--color-accent);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.dropdown-footer {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.view-all-divisions {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.view-all-divisions:hover {
    color: var(--color-text-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav__logo img {
    height: 40px;
    width: auto;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Ensure main nav menu is visible on desktop */
@media (min-width: 769px) {
    .nav__menu {
        display: flex !important;
    }
}

.nav__link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all var(--transition-normal);
    padding: var(--spacing-sm) 0;
    white-space: nowrap;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav__link:hover::after,
.nav__link:focus::after {
    width: 100%;
}

.nav__link--active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav__link--active::after {
    width: 100%;
    background: var(--gradient-primary);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile menu - hidden by default on desktop */
.nav__mobile-menu {
    display: none;
}

/* Ensure mobile toggle is hidden on desktop */
@media (min-width: 769px) {
    .nav__toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .nav__mobile-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0.1;
    z-index: 1;
}

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

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
}

.hero__image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero__image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== FEATURED GAMES SECTION ===== */
.featured-games {
    padding: 80px 0;
    background: #0f0f1a;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.game-card__image {
    position: relative;
    overflow: hidden;
}

.game-card__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card__image img {
    transform: scale(1.1);
}

.game-card__content {
    padding: 1.5rem;
}

.game-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.game-card__description {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.game-card__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.game-card__genre,
.game-card__platform {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.game-card__link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.game-card__link:hover {
    color: #764ba2;
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights {
    padding: 80px 0;
    background: #0a0a0f;
}

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

.highlight-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.highlight-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.highlight-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.highlight-card__description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* ===== SERVICES PREVIEW SECTION ===== */
.services-preview {
    padding: 80px 0;
    background: #0f0f1a;
}

.services-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-list {
    list-style: none;
    margin: 2rem 0;
}

.services-list li {
    padding: 0.75rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 2rem;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.25rem;
}

.services-preview__visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__brand img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__tagline {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer__title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: #667eea;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer__legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__legal p {
    color: #94a3b8;
}

.footer__legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer__legal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer__legal-links a:hover {
    color: #667eea;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-banner p {
    color: #cbd5e1;
    margin: 0;
}

.cookie-banner a {
    color: #667eea;
    text-decoration: none;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 3rem;
    }
    
    .hero .container {
        gap: 3rem;
    }
    
    .services-preview .container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav__column {
        display: none;
    }
    
    .nav__toggle {
        display: block;
        justify-self: end;
        margin-left: auto;
    }
    
    .nav__mobile-menu {
        display: block;
    }
    
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__cta {
        justify-content: center;
    }
    
    .services-preview .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
    }
    
    .footer__legal {
        flex-direction: column;
        text-align: center;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav__link:focus,
.game-card__link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn--primary {
        background: #667eea;
        border: 2px solid #667eea;
    }
    
    .btn--secondary,
    .btn--outline {
        border: 2px solid white;
    }
}

/* ===== PAGE-SPECIFIC HERO VARIATIONS ===== */
.hero--about {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

.hero--games {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

.hero--services {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

.hero--contact {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

.hero--news {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

.hero--careers {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

/* ===== ABOUT PAGE STYLES ===== */
.company-story {
    padding: 80px 0;
    background: #0a0a0f;
}

.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

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

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.125rem;
    min-width: 120px;
    text-align: center;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.timeline-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Mission & Values Section */
.mission-values {
    padding: 80px 0;
    background: #0f0f1a;
}

.mission-values__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-section {
    padding-right: 2rem;
}

.mission-text {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.values-title {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

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

.value-item h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #0a0a0f;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-member__photo {
    position: relative;
    overflow: hidden;
}

.team-member__photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-member__photo img {
    transform: scale(1.05);
}

.team-member__info {
    padding: 1.5rem;
}

.team-member__name {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member__title {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member__bio {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-member__expertise {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.expertise-tag {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background: #0f0f1a;
}

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

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

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

.achievement-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* ===== GAMES PAGE STYLES ===== */
.featured-game {
    padding: 80px 0;
    background: #0a0a0f;
}

.featured-game__showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.featured-game__visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-game__title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-game__description {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-game__features h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.featured-game__features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.featured-game__features li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.featured-game__features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.75rem;
}

.featured-game__meta {
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-label {
    color: #94a3b8;
    font-weight: 500;
}

.meta-value {
    color: white;
    font-weight: 600;
}

.featured-game__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.all-games {
    padding: 80px 0;
    background: #0f0f1a;
}

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

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.875rem;
}

.filter-btn:hover,
.filter-btn.filter-btn--active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.games-grid--portfolio {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.game-card--featured {
    grid-column: span 2;
}

.game-card__status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.development-process {
    padding: 80px 0;
    background: #0a0a0f;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.process-step__number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* ===== SERVICES PAGE STYLES ===== */
.why-consulting {
    padding: 80px 0;
    background: #0a0a0f;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.consulting-services {
    padding: 80px 0;
    background: #0f0f1a;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card__header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    text-align: center;
}

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

.service-card__header h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.service-card__content {
    padding: 2rem;
}

.service-card__content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card__content h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.service-card__content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card__content li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card__content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.service-deliverables {
    background: rgba(102, 126, 234, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-deliverables h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.service-deliverables p {
    color: #cbd5e1;
    margin: 0;
}

.consulting-process {
    padding: 80px 0;
    background: #0a0a0f;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline .process-step {
    text-align: center;
}

.process-timeline .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.success-stories {
    padding: 80px 0;
    background: #0f0f1a;
}

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

.success-story {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
}

.success-story:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.story-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.story-author strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.story-author span {
    color: #667eea;
    font-size: 0.875rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-methods {
    padding: 80px 0;
    background: #0a0a0f;
}

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

.contact-method {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-method__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-method p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
}

.response-time {
    color: #94a3b8;
    font-size: 0.875rem;
    font-style: italic;
}

.contact-form-section {
    padding: 80px 0;
    background: #0f0f1a;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group--full {
    grid-column: span 2;
}

.form-label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.form-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.form-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-form__sidebar {
    position: sticky;
    top: 120px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.office-details p,
.business-hours p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.office-details strong {
    color: white;
}

.business-hours strong {
    color: #667eea;
}

.social-media {
    padding: 80px 0;
    background: #0a0a0f;
}

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

.social-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

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

.social-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.social-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-handle {
    color: #667eea;
    font-weight: 600;
    font-size: 0.875rem;
}

.faq-section {
    padding: 80px 0;
    background: #0f0f1a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    padding: 1.5rem;
    text-align: left;
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-toggle {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    background: rgba(255, 255, 255, 0.02);
    padding: 0 1.5rem 1.5rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* ===== NEWS PAGE STYLES ===== */
.featured-article {
    padding: 80px 0;
    background: #0a0a0f;
}

.featured-article__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.featured-article__image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.article-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.article-date {
    color: #94a3b8;
    font-size: 0.875rem;
}

.featured-article__title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-article__excerpt {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-article__highlights h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.featured-article__highlights ul {
    list-style: none;
    margin-bottom: 2rem;
}

.featured-article__highlights li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.featured-article__highlights li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.75rem;
}

.news-categories {
    padding: 60px 0;
    background: #0f0f1a;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-filter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.875rem;
}

.category-filter:hover,
.category-filter.category-filter--active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.news-grid {
    padding: 80px 0;
    background: #0a0a0f;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.article-card__image {
    position: relative;
    overflow: hidden;
}

.article-card__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card__image img {
    transform: scale(1.1);
}

.article-card__content {
    padding: 1.5rem;
}

.article-card__title a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.article-card__title a:hover {
    color: #667eea;
}

.article-card__excerpt {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-card__author {
    color: #667eea;
    font-size: 0.875rem;
    font-weight: 500;
}

.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    color: #94a3b8;
    font-size: 0.875rem;
}

.newsletter-signup {
    padding: 80px 0;
    background: #0f0f1a;
}

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #667eea;
}

.newsletter-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    cursor: pointer;
}

/* ===== CAREERS PAGE STYLES ===== */
.why-work-with-us {
    padding: 80px 0;
    background: #0a0a0f;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.company-culture {
    padding: 80px 0;
    background: #0f0f1a;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-text {
    padding-right: 2rem;
}

.culture-description {
    color: #cbd5e1;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.culture-values {
    display: grid;
    gap: 1.5rem;
}

.culture-value h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.culture-value p {
    color: #cbd5e1;
    line-height: 1.6;
}

.culture-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.job-openings {
    padding: 80px 0;
    background: #0a0a0f;
}

.job-listings {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.job-listing {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-listing:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.job-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
}

.job-title {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-location,
.job-type,
.job-department {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-description {
    padding: 2rem;
}

.job-description p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-description h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.job-description ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.job-description li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.job-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.job-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.general-application {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.general-application h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.general-application p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.benefits-perks {
    padding: 80px 0;
    background: #0f0f1a;
}

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

.benefit-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.benefit-category h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.benefit-category ul {
    list-style: none;
}

.benefit-category li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.application-process {
    padding: 80px 0;
    background: #0a0a0f;
}

.application-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.application-process .process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.application-process .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.timeline {
    color: #667eea;
    font-size: 0.875rem;
    font-weight: 500;
    font-style: italic;
}

.application-tips {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.application-tips h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.application-tips ul {
    list-style: none;
}

.application-tips li {
    color: #cbd5e1;
    padding: 0.75rem 0;
    line-height: 1.6;
}

.application-tips strong {
    color: white;
}

/* ===== RESPONSIVE DESIGN IMPROVEMENTS ===== */
@media (max-width: 1024px) {
    .featured-game__showcase,
    .featured-article__content,
    .contact-form-wrapper,
    .culture-content,
    .mission-values__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form__sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero--about,
    .hero--games,
    .hero--services,
    .hero--contact,
    .hero--news,
    .hero--careers {
        padding: 100px 0 60px;
    }
    
    .company-story,
    .featured-game,
    .why-consulting,
    .consulting-services,
    .contact-methods,
    .contact-form-section,
    .social-media,
    .faq-section,
    .featured-article,
    .news-categories,
    .news-grid,
    .newsletter-signup,
    .why-work-with-us,
    .company-culture,
    .job-openings,
    .benefits-perks,
    .application-process {
        padding: 60px 0;
    }
    
    .story-timeline {
        max-width: 100%;
    }
    
    .story-timeline::before {
        display: none;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    .timeline-year {
        margin-bottom: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .consulting-benefits {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .social-media-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-options {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .job-cta {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .games-filter,
    .category-filters {
        justify-content: center;
    }
    
    .filter-btn,
    .category-filter {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero--about .hero__title,
    .hero--games .hero__title,
    .hero--services .hero__title,
    .hero--contact .hero__title,
    .hero--news .hero__title,
    .hero--careers .hero__title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-game__title,
    .featured-article__title {
        font-size: 2rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .service-card__header,
    .job-header {
        padding: 1.5rem;
    }
    
    .service-card__content,
    .job-description {
        padding: 1.5rem;
    }
    
    .contact-form,
    .newsletter-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .form-group--full {
        grid-column: span 1;
    }
    
    .newsletter-input-group {
        gap: 0.5rem;
    }
    
    .newsletter-input-group .btn {
        width: 100%;
    }
}

/* ===== UNDER CONSTRUCTION PAGE ===== */

/* Logo Text Styles */
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

/* Under Construction Footer Styles */
.under-construction-page .footer {
    background: var(--gradient-surface);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-3xl) 0;
}

/* Override hero background for under construction page */
.under-construction-page .hero::before {
    background: none;
}

.under-construction-page .footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.under-construction-page .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.under-construction-page .footer__brand p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
}

.under-construction-page .footer__links {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.under-construction-page .footer__links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-normal);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
}

.under-construction-page .footer__links a:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .under-construction-page .footer__content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .under-construction-page .footer__brand {
        align-items: center;
    }
    
    .under-construction-page .footer__links {
        justify-content: center;
    }
}

/* Construction Hero */
.hero--construction {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero--construction .hero__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero--construction .hero__text {
    order: 1;
}

.hero--construction .hero__visual {
    order: 2;
    justify-self: end;
}

.construction-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-icon {
    color: var(--color-accent);
    animation: pulse 2s ease-in-out infinite;
}

.construction-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

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

.particle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

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

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

/* Progress Section */
.progress-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-surface);
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.progress-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.progress-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-hover);
}

.progress-card__icon {
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.progress-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.progress-card__description {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    transition: width 1s ease-in-out;
}

.progress-percentage {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-surface);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--color-text-primary);
    transition: all var(--transition-normal);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.contact-method svg {
    color: var(--color-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero--construction .hero__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .hero--construction .hero__text {
        order: 1;
    }
    
    .hero--construction .hero__visual {
        order: 2;
        justify-self: center;
    }
    
    .progress-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-method {
        justify-content: center;
    }
}
