/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #e0e0e0;
    --accent-color: #cccccc;
    --dark-bg: #000000;
    --light-bg: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --card-bg: #1a1a1a;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: background, backdrop-filter;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 150px;
    max-width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: calc(2rem - 10px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-brand a {
    text-decoration: none;
}

.nav-brand h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav-logo {
    height: 38px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu-contact {
    display: none;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
    text-decoration: none;
}

.nav-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-icon svg {
    width: 20px;
    height: 20px;
}

.nav-contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 6px 12px;
    border-radius: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #cc1148;
    transition: var(--transition);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.nav-link:hover::after {
    width: 60%;
}

.hamburger {
    display: none;
    width: 22px;
    height: 16px;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


/* Hero Section */
.hero {
    height: calc(100vh - 100px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000000;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}


.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    will-change: transform;
}


.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    position: relative;
}


.hero-we-build {
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease both;
}

.hero-word-wrapper {
    margin-bottom: 1.8rem;
}

.hero-animated-word {
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 900;
    color: #cc1148;
    letter-spacing: -0.03em;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-animated-word.fade-out {
    opacity: 0;
    transform: translateY(-16px);
}

.hero-animated-word.fade-enter {
    opacity: 0;
    transform: translateY(16px);
    transition: none !important;
}

.hero-tagline {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0 0 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 2rem;
    background: #ffffff;
    color: #000000;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-primary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-btn-primary svg {
    transition: transform 0.2s ease;
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 2rem;
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.5s ease;
    will-change: opacity, transform;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.page-section {
    padding-top: 8rem;
    min-height: 100vh;
}

.page-section-top {
    padding-top: 8rem !important;
}

.contact.page-section {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    white-space: nowrap;
    text-transform: uppercase;
}

.section-title::before,
.section-title::after {
    content: '';
    width: 60px;
    height: 2px;
    flex-shrink: 0;
    display: block;
}

.section-title::before {
    background: linear-gradient(to left, #cc1148, transparent);
}

.section-title::after {
    background: linear-gradient(to right, #cc1148, transparent);
}

/* About Section */
.about {
    background: var(--light-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}




.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Contact Section */

/* Contact Hero Section */
.contact-hero {
    background: var(--dark-bg);
    padding: 8rem 0 3rem;
    position: relative;
    overflow: hidden;
}


.contact-hero .section-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
}

/* Contact Main Section */
.contact-main {
    background: var(--light-bg);
    padding: 4rem 0 6rem;
    position: relative;
}

.contact-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-title,
.contact-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-title::after,
.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 2px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateX(8px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 10px;
    color: #ef4444;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.contact-card-content h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.contact-card-content p {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Social Links Section */
.social-links-section {
    margin-top: 1rem;
}

.social-links-section h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.social-link {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: translateY(-5px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-field label {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.contact-submit-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 ease;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
    transform: translateX(5px) rotate(5deg);
}


/* Footer */
.footer {
    background: #1a1a1a;
    padding: 4rem 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo a {
    display: block;
    text-decoration: none;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.footer-nav a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b3b3b3;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
}

.footer-cookie {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-cookie:hover {
    color: #ffffff;
}

.footer-copyright {
    color: #808080;
    font-size: 0.9rem;
    margin: 0;
}

.footer-scroll-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b3b3b3;
    background: none;
    border: none;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0;
    font-family: inherit;
}

.footer-scroll-top:hover {
    color: #ffffff;
}

.footer-scroll-top .arrow {
    font-size: 0.75rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* Careers Section */

.job-requirements {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.job-requirements h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.job-requirements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.careers-mail-cta {
    text-align: center;
    margin-top: 2rem;
}

.careers-mail-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.careers-mail-address {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #cc1148;
    padding-bottom: 3px;
    transition: color 0.2s ease;
}

.careers-mail-address:hover {
    color: #cc1148;
}

.careers-benefits {
    text-align: center;
    margin-top: 5rem;
}

.careers-benefits h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}


.careers-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.careers-benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.careers-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.careers-benefit-card .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.careers-benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.careers-benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Careers Page Specific Spacing */
.home-about.page-section + .about-values-section {
    padding-top: 60px;
}

.home-about.page-section {
    padding-top: 8rem !important;
    padding-bottom: 3rem;
    min-height: auto;
}

/* Careers Responsive */
@media (max-width: 768px) {
    .careers-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .careers-benefit-card {
        padding: 2rem;
    }

    .home-about.page-section {
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 480px) {
    .careers-benefit-card {
        padding: 1.5rem;
    }

    .careers-benefit-card .benefit-icon {
        font-size: 2.5rem;
    }

    .careers-benefit-card h3 {
        font-size: 1.2rem;
    }

    .home-about.page-section {
        padding-bottom: 1.5rem !important;
    }
}

/* About Page Sections */
.about-values-section {
    background: var(--dark-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-values-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-values-header .section-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* About Team Section */
.about-team-section {
    background: var(--light-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}


.about-team-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-team-header .section-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.team-member-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member-card:hover .member-image {
    border-color: rgba(139, 92, 246, 0.5);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: #8b5cf6;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-values-header .section-title,
    .about-team-header .section-title {
        font-size: 2.5rem;
    }

    .about-values-section,
    .about-team-section {
        padding: 50px 0;
    }

    .about-values-wrapper,
    .about-team-wrapper {
        padding: 0 1.5rem;
    }

    .about-values-header,
    .about-team-header {
        margin-bottom: 3rem;
    }

    .value-card {
        padding: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .about-values-header .section-title,
    .about-team-header .section-title {
        font-size: 2rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }

    .value-card p {
        font-size: 1rem;
    }
}

/* Responsive Design */
/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-section {
        order: 2;
    }

    .contact-form-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 2rem;
    }

    .contact-hero .section-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-main {
        padding: 3rem 0 4rem;
    }

    .contact-grid {
        gap: 2.5rem;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.5rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .social-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 5rem 0 1.5rem;
    }

    .contact-hero .section-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .contact-form-section {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }

    .nav-logo {
        height: 38px;
    }

    .nav-contact-btn {
        display: none;
    }

    .nav-left {
        gap: 1rem;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        text-align: left;
        padding: 0.5rem 1.5rem 1.5rem;
        gap: 0;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        padding-left: 0;
        color: #ffffff;
        background: none;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu-contact {
        display: block;
        padding-top: 1rem;
    }

    .nav-menu-contact .nav-link {
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 8px;
        text-align: center;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .nav-menu-contact .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 0;
        border-color: rgba(255, 255, 255, 0.7);
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 997;
        opacity: 1;
        transition: opacity 0.4s ease;
    }

    .nav-icons {
        gap: 0.5rem;
    }

    .nav-icon {
        width: 36px;
        height: 36px;
    }

    .nav-icon svg {
        width: 18px;
        height: 18px;
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .hero-we-build,
    .hero-animated-word {
        font-size: clamp(2rem, 7vw, 3.5rem);
        white-space: nowrap;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.6rem 1.25rem;
        font-size: 0.75rem;
    }

    .section-title {
        white-space: normal;
        text-align: center;
        font-size: 2rem !important;
        letter-spacing: -0.5px !important;
        gap: 12px;
    }

    .section-title::before,
    .section-title::after {
        display: block;
        width: 24px;
        flex-shrink: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .footer {
        padding: 3rem 1.5rem 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-social {
        margin-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 2rem;
    }

    .footer-scroll-top {
        order: -1;
        align-self: flex-start;
    }

    .job-listings {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem !important;
        letter-spacing: -0.5px !important;
        gap: 8px;
        white-space: normal;
        text-align: center;
    }

    .section-title::before,
    .section-title::after {
        display: block;
        width: 18px;
        flex-shrink: 0;
    }

    .games-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HOMEPAGE SECTIONS ===== */

/* Featured Game Section */
.featured-game {
    background: var(--dark-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}


.featured-game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.featured-game-header {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.featured-game-header .section-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.featured-game-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.featured-game-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: start;
}

.featured-game-poster {
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    border-radius: 12px;
    aspect-ratio: 2/3;
    max-width: 320px;
    width: 100%;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-game-poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(239, 68, 68, 0.15) 0%,
        transparent 50%,
        rgba(220, 38, 38, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.featured-game-poster:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 70px rgba(239, 68, 68, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(239, 68, 68, 0.6);
}

.featured-game-poster:hover::before {
    opacity: 1;
}

.featured-game-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-game-poster:hover img {
    transform: scale(1.05);
}

.featured-game-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.game-title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-name {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin: 0;
}

.player-count-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 50px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.player-count {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.player-count-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.player-count-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: lowercase;
    font-weight: 500;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.featured-game-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.featured-game-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.featured-game-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.featured-game-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Steam Button */
.steam-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1.7rem;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 20px rgba(239, 68, 68, 0.5),
        0 0 0 0 rgba(239, 68, 68, 0.5);
    overflow: hidden;
}

.steam-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.steam-btn:hover::before {
    left: 100%;
}

.steam-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(239, 68, 68, 0.6),
        0 0 0 3px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.steam-btn:active {
    transform: translateY(0);
    box-shadow:
        0 2px 10px rgba(239, 68, 68, 0.5),
        0 0 0 2px rgba(239, 68, 68, 0.4);
}

.steam-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.steam-btn:hover .steam-icon {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-game {
        padding: 80px 0;
    }

    .featured-game-header .section-title {
        font-size: 3rem;
    }

    .featured-game-card {
        padding: 2.5rem;
    }

    .featured-game-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .featured-game-poster {
        max-width: 280px;
        margin: 0 auto;
    }

    .game-name {
        font-size: 2.5rem;
    }

    .game-stats {
        grid-template-columns: 1fr;
    }

    .featured-game-description {
        font-size: 1rem;
    }

    .home-about-header .section-title {
        font-size: 3rem;
    }

    .home-about-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .featured-game {
        padding: 60px 0;
    }

    .featured-game-header {
        margin-bottom: 3rem;
    }

    .featured-game-header .section-title {
        font-size: 2.5rem;
    }

    .featured-game-wrapper {
        padding: 0 1.5rem;
    }

    .featured-game-card {
        padding: 2rem;
    }

    .featured-game-main {
        gap: 2.5rem;
    }

    .game-name {
        font-size: 2rem;
    }

    .game-title-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-box {
        padding: 1rem 1.25rem;
    }

    .featured-game-description {
        font-size: 1rem;
    }

    .home-about {
        padding: 50px 0;
    }

    .home-about-header {
        margin-bottom: 2.5rem;
    }

    .home-about-header .section-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }

    .home-about-wrapper {
        padding: 0 1.25rem;
    }

    .home-about-card {
        padding: 1.75rem;
    }

    .home-about-text {
        gap: 1.25rem;
    }

    .home-about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .home-about-text .btn {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .featured-game-actions {
        flex-direction: column;
    }

    .featured-game-actions .btn {
        width: 100%;
    }
}

/* Home About Section */
.home-about {
    background: var(--light-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}


.home-about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.home-about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.home-about-header .section-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.home-about-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.home-about-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    width: 100%;
}

.home-about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: center;
}

.home-about-text .btn {
    align-self: center;
    margin-top: 1rem;
}



/* Discord CTA Section */
.discord-cta {
    background: var(--dark-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}


.discord-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.discord-header {
    text-align: center;
    margin-bottom: 4rem;
}

.discord-header .section-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.discord-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.discord-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.discord-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.discord-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    border: none;
    border-radius: 60px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 20px rgba(88, 101, 242, 0.5),
        0 0 0 0 rgba(88, 101, 242, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-btn-primary::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 ease;
}

.discord-btn-primary:hover::before {
    left: 100%;
}

.discord-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 35px rgba(88, 101, 242, 0.6),
        0 0 0 5px rgba(88, 101, 242, 0.25);
    background: linear-gradient(135deg, #4752C4 0%, #3C45A5 100%);
}

.discord-btn-primary:active {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(88, 101, 242, 0.5),
        0 0 0 3px rgba(88, 101, 242, 0.3);
}

/* Secondary Button Style */
.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* Homepage Responsive */
@media (max-width: 992px) {
}

@media (max-width: 768px) {
    .discord-cta {
        padding: 60px 0;
    }

    .discord-wrapper {
        padding: 0 1.5rem;
    }

    .discord-header {
        margin-bottom: 3rem;
    }

    .discord-header .section-title {
        font-size: 2.5rem;
    }

    .discord-card {
        padding: 2rem;
    }

    .discord-content p {
        font-size: 1rem;
    }

    .discord-btn-primary {
        padding: 1.5rem 3.5rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .featured-game {
        padding: 40px 0;
    }

    .featured-game-header {
        margin-bottom: 2rem;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.25rem;
    }

    .featured-game-header .section-title {
        font-size: 2rem;
    }

    .featured-game-wrapper {
        padding: 0 1rem;
    }

    .featured-game-card {
        padding: 1.5rem;
    }

    .featured-game-main {
        gap: 2rem;
    }

    .featured-game-poster {
        max-width: 240px;
    }

    .game-name {
        font-size: 1.75rem;
    }

    .player-count-container {
        padding: 0.6rem 1.25rem;
    }

    .player-count-number {
        font-size: 1.1rem;
    }

    .game-stats {
        gap: 1rem;
    }

    .stat-box {
        padding: 0.85rem 1rem;
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .featured-game-actions {
        flex-direction: column;
    }

    .featured-game-actions .btn,
    .steam-btn {
        width: 100%;
        padding: 1rem 2rem;
        justify-content: center;
    }

    .home-about {
        padding: 40px 0;
    }

    .home-about-header {
        margin-bottom: 1.75rem;
    }

    .home-about-header .section-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .home-about-wrapper {
        padding: 0 1rem;
    }

    .home-about-card {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .home-about-text {
        gap: 1rem;
    }

    .home-about-text p {
        font-size: 0.95rem;
        line-height: 1.65;
        text-align: center;
    }

    .home-about-text .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .discord-cta {
        padding: 40px 0;
    }

    .discord-wrapper {
        padding: 0 1rem;
    }

    .discord-header {
        margin-bottom: 2rem;
    }

    .discord-header .section-title {
        font-size: 2rem;
    }

    .discord-card {
        padding: 1.5rem;
    }

    .discord-content p {
        font-size: 1rem;
    }

    .discord-btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 1.4rem 2.5rem;
        font-size: 1.25rem;
    }
}

/* ===== GAMES PAGE — COMING SOON ===== */

.games-hero-section {
    min-height: 62vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark-bg);
    overflow: hidden;
    padding-top: 80px;
}

.games-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 65% at 50% 55%, rgba(204, 17, 72, 0.11) 0%, transparent 65%),
        radial-gradient(ellipse 30% 30% at 80% 20%, rgba(204, 17, 72, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.games-hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.games-hero-inner {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.games-hero-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #cc1148;
    margin-bottom: 1.25rem;
}

.games-hero-heading {
    font-size: clamp(6rem, 18vw, 14rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.75rem;
}

.games-hero-tagline {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
    letter-spacing: 0.1em;
}

/* Coming Soon section */
.games-cs-section {
    background: var(--light-bg);
    padding: 140px 0 100px;
    position: relative;
}

.games-cs-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.games-cs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.games-cs-pill {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    background: rgba(204, 17, 72, 0.1);
    border: 1px solid rgba(204, 17, 72, 0.35);
    border-radius: 50px;
    color: #cc1148;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0.75rem;
}

.games-cs-heading {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.games-cs-sub {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 1.5rem auto 0;
}

/* Mystery card grid */
.games-cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.games-mystery-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.games-mystery-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 17, 72, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

/* Poster */
.gmc-poster {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #080808;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gmc-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(204, 17, 72, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.gmc-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(204, 17, 72, 0.55), transparent);
    animation: gmc-scan 3.5s linear infinite;
}

.games-mystery-card:nth-child(2) .gmc-scanline {
    animation-delay: -1.75s;
}

@keyframes gmc-scan {
    0%   { top: 0;    opacity: 0; }
    4%   { opacity: 1; }
    96%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.gmc-qmark {
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    user-select: none;
    animation: gmc-qpulse 4s ease-in-out infinite;
}

.games-mystery-card:nth-child(2) .gmc-qmark {
    animation-delay: -2s;
}

@keyframes gmc-qpulse {
    0%, 100% { color: rgba(255, 255, 255, 0.05); }
    50%       { color: rgba(204, 17, 72, 0.15); }
}

/* Card body */
.gmc-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.gmc-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cc1148;
}

.gmc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cc1148;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

/* Redacted elements */
.gmc-title-bars {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.gmc-bar {
    height: 18px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gmc-bar.sm {
    height: 11px;
    background: rgba(255, 255, 255, 0.05);
}

.gmc-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: gmc-shimmer 2.8s ease-in-out infinite;
}

@keyframes gmc-shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.gmc-tag-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gmc-tag-ph {
    display: block;
    height: 24px;
    width: 68px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.gmc-tag-ph::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: gmc-shimmer 2.8s ease-in-out infinite;
    animation-delay: 0.4s;
}

.gmc-desc-bars {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gmc-footer {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .games-hero-section {
        min-height: 52vh;
    }

    .games-cs-section {
        padding: 120px 0 80px;
    }

    .games-cs-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .games-cs-grid .games-mystery-card:nth-child(2) {
        display: none;
    }

    .games-cs-heading {
        font-size: clamp(1rem, 5.5vw, 1.5rem) !important;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .games-hero-heading {
        letter-spacing: -0.03em;
    }

    .games-cs-wrapper {
        padding: 0 1rem;
    }

    .gmc-body {
        padding: 1.25rem;
    }
}

/* ===== HOMEPAGE REDESIGN — EDITORIAL STYLE ===== */

/* ---- Studio Intro ---- */
.hsi-section {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 2rem 8rem;
    display: flex;
    justify-content: center;
}

.hsi-inner {
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

.hsi-inner .section-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.hsi-heading {
    font-size: clamp(3.5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: #ffffff;
}

.hsi-heading--single {
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    white-space: nowrap;
}

.hsi-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 640px;
}

.hsi-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.75;
}

.hsi-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cc1148;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    transition: gap 0.2s ease;
}

.hsi-cta:hover {
    gap: 0.9rem;
}

/* ---- Section Divider ---- */
.home-section-divider {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 150px;
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-section-divider::before,
.home-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.home-section-divider span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

/* ---- Craft Panels ---- */
.hcraft-section {
    background: var(--dark-bg);
}

.hcraft-panel {
    display: grid;
    grid-template-columns: 70fr 30fr;
    height: 62vh;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hcraft-panel--flip {
    grid-template-columns: 30fr 70fr;
}

.hcraft-panel--flip .hcraft-text {
    text-align: right;
    align-items: flex-end;
}

.hcraft-img {
    overflow: hidden;
    position: relative;
    background: #060606;
}

.hcraft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.82;
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.hcraft-panel:hover .hcraft-img img {
    opacity: 0.96;
    transform: scale(1.03);
}

/* Atmospheric CSS panels for panels without images */
.hcraft-img--env {
    background:
        radial-gradient(ellipse 70% 60% at 35% 60%, rgba(12, 30, 12, 0.95) 0%, #060606 65%),
        radial-gradient(ellipse 30% 30% at 75% 22%, rgba(204, 17, 72, 0.04) 0%, transparent 55%);
}

.hcraft-img--char {
    background:
        radial-gradient(ellipse 60% 70% at 55% 50%, rgba(18, 12, 38, 0.96) 0%, #060606 60%),
        radial-gradient(ellipse 25% 25% at 15% 18%, rgba(204, 17, 72, 0.05) 0%, transparent 50%);
}

.hcraft-img--props {
    background:
        radial-gradient(ellipse 65% 55% at 45% 55%, rgba(26, 20, 6, 0.96) 0%, #060606 65%),
        radial-gradient(ellipse 20% 26% at 80% 20%, rgba(204, 17, 72, 0.05) 0%, transparent 50%);
}

/* Subtle dot texture on CSS-only dark panels */
.hcraft-img--char::before,
.hcraft-img--props::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hcraft-text {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: var(--dark-bg);
}

.hcraft-num {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #cc1148;
    text-transform: uppercase;
}

.hcraft-text h3 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 0.92;
}

.hcraft-text p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 360px;
}

.hcraft-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cc1148;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
    transition: gap 0.2s ease;
}

.hcraft-link:hover {
    gap: 0.85rem;
}

/* ---- Discord CTA ---- */
.home-discord-editorial {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 2rem 8rem;
    display: flex;
    justify-content: center;
}

.hde-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.75rem;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
}

.hde-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(88, 101, 242, 0.55);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .home-section-divider { padding-left: 60px; padding-right: 60px; }
    .hcraft-text          { padding: 4rem 3.5rem; }
}

@media (max-width: 1024px) {
    .hcraft-panel,
    .hcraft-panel--flip {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hcraft-img {
        aspect-ratio: 16 / 9;
    }

    .hcraft-text {
        padding: 3.5rem 2.5rem;
    }

    .hcraft-text p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hsi-section {
        padding: 5rem 1.5rem;
    }

    .home-discord-editorial {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-section-divider { padding: 1.5rem 1.5rem; }

    .hcraft-text { padding: 3rem 1.5rem; }

    .home-discord-editorial {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hsi-section { padding: 4rem 1rem; }
    .hcraft-text { padding: 2.5rem 1rem; }
    .home-discord-editorial { padding: 4rem 1rem; }
}
