/* Global Styles */
:root {
    --primary-color: #ffffff;
    --secondary-color: #141414;
    --accent-color: #ffffff;
    --text-color: #ffffff;
    --dark-bg: #141414;
    --light-bg: #1f1f1f;
    --card-bg: #1f1f1f;
    --gradient: linear-gradient(135deg, #ffffff 0%, #d9d9d9 100%);
    --bs-primary: #ffffff;
    --bs-primary-rgb: 255, 255, 255;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--dark-bg);
}

/* Navbar Styles */
.navbar {
    background-color: rgba(20, 20, 20, 0.95) !important;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color) !important;
    display: flex;
    align-items: center;
    padding: 0 !important;
    gap: 1.5rem;
    position: relative;
    height: 80px;
}

.navbar-brand img {
    height: 130px;
    width: auto;
    transition: transform 0.3s ease;
    position: absolute;
    top: -25px;
    left: 0;
}

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

.navbar-brand span {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 140px;
    line-height: 80px;
    display: block !important;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-link {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    color: var(--text-color) !important;
    position: relative;
    transition: all 0.3s ease;
}

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

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

/* Novo estilo para link ativo */
.nav-link.active {
    color: #d0d0d0 !important;
    background: rgba(160, 160, 160, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(120, 120, 120, 0.25);
}

/* Efeito hover moderno */
.nav-link:hover {
    color: #d0d0d0 !important;
    transform: translateY(-2px);
}

.nav-link:focus,
.nav-link:active,
.nav-link.show {
    color: #d0d0d0 !important;
    background: rgba(160, 160, 160, 0.2) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Prevent browser blue tap/click flash on navbar links */
.navbar .nav-link,
.navbar .dropdown-item,
.navbar .dropdown-toggle {
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
}

.navbar .nav-link:focus-visible,
.navbar .dropdown-item:focus-visible,
.navbar .dropdown-toggle:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    color: #d0d0d0 !important;
    background: rgba(160, 160, 160, 0.2) !important;
}

/* Ajuste para mobile */
@media (max-width: 992px) {
    .nav-link.active {
        background: rgba(160, 160, 160, 0.2);
        padding-left: 1.5rem !important;
        border-left: 3px solid #9a9a9a;
        border-radius: 0;
        box-shadow: none;
    }
    
    .nav-link:hover {
        transform: none;
        padding-left: 1.5rem !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(20, 20, 20, 1) 0%, 
        rgba(20, 20, 20, 0.95) 20%, 
        rgba(20, 20, 20, 0.8) 40%, 
        rgba(20, 20, 20, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 2rem;
    color: var(--text-color);
    margin-top: -2rem;
}

.hero-label {
    display: inline-block;
    background: var(--gradient);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.mega-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    margin-bottom: 1.5rem;
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-navigation {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    display: flex;
    gap: 0.8rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        padding: 120px 0 60px;
    }

    .mega-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        margin: 0 auto;
    }

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

    .hero-features {
        justify-content: center;
        text-align: center;
    }

    .navbar-collapse {
        background: rgba(20, 20, 20, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
    }

    .navbar .dropdown {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .navbar .dropdown-menu {
        background: rgba(33, 37, 41, 0.5);
        margin-left: 1rem;
        border: none;
        box-shadow: none;
    }

    .navbar .dropdown-menu::before {
        display: none;
    }

    .featured-game-card.modern .featured-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-game-card.modern .featured-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .game-card-image {
        height: 200px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.3rem 0;
    }

    .navbar-brand {
        height: 70px;
    }

    .navbar-brand img {
        height: 110px;
        top: -20px;
    }
    
    .navbar-brand span {
        font-size: 1.4rem;
        margin-left: 120px;
        line-height: 70px;
    }

    .hero-section {
        padding: 100px 0 40px;
    }

    .mega-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .btn-lg {
        width: 100%;
        margin: 0.5rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .game-card, .news-card {
        margin-bottom: 2rem;
    }

    .footer {
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .contact-form-alt,
    .contact-info-alt {
        padding: 1.5rem;
    }

    .quick-contacts {
        flex-direction: column;
    }

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

    .featured-news-card {
        margin-bottom: 2rem;
    }

    .trending-news {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-section {
        padding: 80px 0 30px;
    }

    .mega-title {
        font-size: 1.8rem;
    }

    .hero-label {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .game-card-image {
        height: 180px;
    }

    .card-body {
        padding: 1.2rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .game-tags .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .contact-hero-section-alt {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .method-item {
        padding: 1.5rem;
    }

    .form-floating > .form-control {
        height: 50px;
    }

    .accordion-button {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 1.2rem;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Card Styles */
.game-card, .news-card, .contact-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover, .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-body {
    padding: 1.5rem;
    background: var(--card-bg);
}

.card-title {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Form Styles */
.contact-section {
    background-color: var(--dark-bg);
    padding-top: 120px;
}

.form-control {
    background-color: var(--light-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 1rem;
    border-radius: 10px;
}

.form-control:focus {
    background-color: var(--light-bg);
    border-color: var(--accent-color);
    color: var(--text-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.form-label {
    color: var(--text-color);
    font-weight: 500;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.35);
    background: var(--gradient);
}

/* Contact Info Styles */
.contact-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Global white-first palette overrides */
.text-primary {
    color: #ffffff !important;
}

.bg-primary {
    background-color: #ffffff !important;
    color: #141414 !important;
}

.btn-primary {
    color: #141414 !important;
}

.btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.75) !important;
    color: #ffffff !important;
}

.btn-outline-primary:hover {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #141414 !important;
}

.contact-info h3 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.contact-info ul li {
    margin-bottom: 1.2rem;
}

.contact-info ul li i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-info ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info ul li a:hover {
    color: var(--accent-color);
}

/* Footer Styles */
.footer {
    background-color: var(--secondary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Content visible immediately — no scroll reveal */
.fade-in {
    opacity: 1;
    transform: none;
    animation: none;
}

.reveal,
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Contact Hero Section */
.contact-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.8)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
}

/* Newsletter Form */
.newsletter-form .input-group {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    background: transparent;
    padding: 1rem;
}

.newsletter-form .btn {
    padding: 0.7rem 1.5rem;
    border-radius: 0 10px 10px 0;
}

.newsletter-form .btn i {
    font-size: 1.2rem;
}

/* Contact Form Enhancements */
.contact-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card h3 {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Form Input Animations */
.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    transform: translateY(-2px);
}

/* Social Links Enhancement */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

/* Footer social icons: keep gray on interaction */
.footer .social-links a:hover,
.footer .social-links a:focus,
.footer .social-links a:active {
    background: #4a4a4a !important;
    color: #f0f0f0 !important;
    transform: translateY(-3px);
    box-shadow: none !important;
}

/* Social icons visible but inactive until real URLs are added */
.footer .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-links__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    color: var(--text-color);
    background: var(--light-bg);
    border-radius: 50%;
    cursor: default;
    user-select: none;
    transition: all 0.3s ease;
}

a.social-links__icon {
    cursor: pointer;
    text-decoration: none;
}

.footer .social-links__icon:hover {
    background: #4a4a4a;
    color: #f0f0f0;
    transform: translateY(-3px);
}

.social-item--static {
    cursor: default;
    user-select: none;
}

.contact-info-alt .social-item--static:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: none;
    color: var(--text-color);
}

/* Game Card Styles */
.game-card-image {
    position: relative;
    overflow: hidden;
}

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

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

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-tags {
    margin-top: 1rem;
}

.game-tags .badge {
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    font-weight: 500;
}

/* News Card Styles */
.news-card-image {
    position: relative;
    overflow: hidden;
}

.news-card-image img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient);
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    line-height: 1.2;
}

.news-date span {
    display: block;
    font-weight: 700;
}

.news-date span:first-child {
    font-size: 1.2rem;
}

/* About Section Styles */
.about-section {
    background: var(--dark-bg);
    padding-top: 0;
}

.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero .hero-overlay {
    background: linear-gradient(90deg, 
        rgba(20, 20, 20, 1) 0%, 
        rgba(20, 20, 20, 0.95) 20%, 
        rgba(20, 20, 20, 0.8) 40%, 
        rgba(20, 20, 20, 0.4) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 3;
    padding: 4rem 2rem;
    color: var(--text-color);
}

.about-hero-content .hero-label {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.about-hero-content .mega-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.about-hero-content .hero-description {
    font-size: 1.1rem;
    max-width: 500px;
}

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

.feature-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

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

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-image:hover .about-image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .about-hero {
        height: 50vh;
    }

    .about-hero-content .mega-title {
        font-size: 2.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
        min-height: 300px;
    }

    .about-hero-content {
        padding: 3rem 1rem;
        text-align: center;
    }

    .about-hero-content .mega-title {
        font-size: 2.2rem;
    }

    .about-hero-content .hero-description {
        font-size: 1rem;
        margin: 0 auto;
    }

    .feature-item {
        padding: 1.5rem;
    }
}

/* Button Styles */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* About Hero Main */
.about-hero-main {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    background: var(--dark-bg);
}

/* History Section */
.history-section {
    background: var(--dark-bg);
}

.history-content .section-title::after {
    left: 0;
    transform: none;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--accent-color);
    background: rgba(0, 123, 255, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.history-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Team Section */
.team-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.team-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

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

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.team-info p {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    color: var(--text-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

/* Values Section */
.values-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero-main {
        height: 70vh;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-main {
        height: 60vh;
        min-height: 400px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-image img {
        height: 250px;
    }

    .value-card {
        padding: 2rem 1rem;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Games Page Styles */
.games-hero-main {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    background: var(--dark-bg);
}

/* Category Filters */
.category-filters {
    margin-bottom: 3rem;
}

.category-filters .btn {
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-filters .btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Game Cards */
.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-body {
    padding: 1.5rem;
    background: var(--card-bg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-actions {
    margin-top: auto;
}

.game-meta {
    margin-top: auto;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.game-tags .badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.game-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 600;
}

.game-rating i {
    margin-right: 0.5rem;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Featured Games */
.featured-game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-game-image {
    height: 300px;
    overflow: hidden;
}

.featured-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-game-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.game-category {
    display: inline-block;
    background: var(--gradient);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.featured-game-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating i {
    color: var(--accent-color);
    margin-right: 0.2rem;
}

/* Pre-Order Section */
.pre-order-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pre-order-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pre-order-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.pre-order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pre-order-card:hover .pre-order-image img {
    transform: scale(1.1);
}

.pre-order-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
}

.pre-order-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.regular-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.pre-order-discount {
    background: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .games-hero-main {
        height: 70vh;
    }

    .featured-game-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .games-hero-main {
        height: 60vh;
        min-height: 400px;
    }

    .game-card-image {
        height: 200px;
    }

    .featured-game-image {
        height: 200px;
    }

    .category-filters .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Row height consistency */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.row.g-4 > [class*="col-"] {
    display: flex;
}

/* Game Updates Section */
.updates-section .game-card {
    height: 100%;
}

.updates-section .card-body {
    display: flex;
    flex-direction: column;
}

.updates-section .game-meta {
    margin-top: auto;
}

.updates-section .game-rating {
    margin-bottom: 1rem;
}

.updates-section .game-rating .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Featured Game Cards Modern */
.featured-game-card.modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(31, 31, 31, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.featured-game-card.modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 123, 255, 0.3);
}

.featured-game-card.modern .featured-game-image {
    height: 300px;
    position: relative;
}

.featured-game-card.modern .featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, var(--card-bg) 0%, rgba(20, 20, 20, 0) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.featured-game-card.modern:hover .featured-overlay {
    opacity: 0.6;
}

.featured-game-card.modern .featured-game-content {
    padding: 2rem;
    position: relative;
}

.featured-game-card.modern .featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.featured-game-card.modern .game-category {
    background: var(--gradient);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.featured-game-card.modern .rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--accent-color);
}

.featured-game-card.modern h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-game-card.modern .featured-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-game-card.modern .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.featured-game-card.modern .feature-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.featured-game-card.modern .feature-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.featured-game-card.modern p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.featured-game-card.modern .featured-actions {
    display: flex;
    gap: 1rem;
}

.featured-game-card.modern .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.featured-game-card.modern .btn-primary {
    background: var(--gradient);
    border: none;
}

.featured-game-card.modern .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.featured-game-card.modern .btn:hover {
    transform: translateY(-2px);
}

.featured-game-card.modern .btn-primary:hover {
    box-shadow: 0 5px 15px rgba(255, 71, 71, 0.4);
}

.featured-game-card.modern .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .featured-game-card.modern .featured-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-game-card.modern .featured-game-image {
        height: 250px;
    }

    .featured-game-card.modern h3 {
        font-size: 1.8rem;
    }

    .featured-game-card.modern .featured-details {
        grid-template-columns: 1fr;
    }

    .featured-game-card.modern .featured-actions {
        flex-direction: column;
    }
}

/* News Page Styles */
.main-content {
    padding-top: 76px;
}

.news-hero-section {
    padding: 2rem 0;
    background-color: var(--dark-bg);
}

.featured-news-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-image {
    position: relative;
    width: 100%;
    height: 400px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.news-category {
    background-color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.news-date {
    font-size: 0.9rem;
    margin-top: 10px;
}

.news-content {
    padding: 30px;
}

.news-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.news-excerpt {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.trending-news {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.trending-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.trending-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.trending-item img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.trending-content h4 {
    font-size: 1rem;
    margin: 5px 0;
    color: var(--text-color);
}

.trending-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.category-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.category-card h4 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #001f3f 100%);
}

.newsletter-form .input-group {
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.newsletter-form .btn:hover {
    background: var(--gradient);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-content {
        padding-top: 66px;
    }

    .news-hero-section {
        padding: 1.5rem 0;
    }

    .news-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .news-hero-section {
        padding: 1rem 0;
    }

    .news-image {
        height: 250px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #001f3f 100%);
}

.contact-stats {
    margin-top: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.contact-form-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-card .card-header {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(31, 31, 31, 0.95) 100%);
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-card .card-header h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-card .card-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-form {
    padding: 2rem;
}

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

.form-group label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input-group {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.input-group-text {
    background: var(--light-bg);
    border: none;
    color: var(--accent-color);
    padding: 0.75rem 1rem;
}

.form-control {
    background: var(--light-bg);
    border: none;
    color: var(--text-color);
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control:focus {
    background: var(--light-bg);
    box-shadow: none;
    color: var(--text-color);
}

.contact-info-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.contact-info-card .card-header {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(31, 31, 31, 0.95) 100%);
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card .card-header h3 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-card .card-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.info-items {
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.info-item .icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.info-item .content h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item .content a,
.info-item .content p {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.info-item .content a:hover {
    color: var(--accent-color);
}

.social-connect {
    padding: 0 2rem 2rem;
}

.social-connect h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-connect .social-links {
    display: flex;
    gap: 1rem;
}

.social-connect .social-link {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-connect .social-link:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .contact-hero-section {
        padding: 100px 0 60px;
    }

    .contact-stats {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 80px 0 40px;
    }

    .mega-title {
        font-size: 2.5rem;
    }

    .contact-form-card .card-header,
    .contact-info-card .card-header {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .info-items {
        padding: 1.5rem;
    }

    .social-connect {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Alternative Contact Page Styles */
.contact-hero-section-alt {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #001f3f 100%);
    overflow: hidden;
}

.shape-1, .shape-2, .shape-3 {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-color) 0%, #00c6ff 100%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
}

.shape-3 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content-alt {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.method-item {
    background: rgba(0, 123, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-icon i {
    font-size: 1.5rem;
    color: #141414;
}

.method-item h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.method-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form-section-alt {
    padding: 80px 0;
    background: var(--dark-bg);
}

.contact-wrapper {
    background: rgba(31, 31, 31, 0.5);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-alt {
    padding: 3rem;
    background: var(--card-bg);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
}

.form-floating {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: 60px;
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 1.5rem 1rem 0.5rem;
}

.form-floating > textarea.form-control {
    height: 150px;
    padding-top: 2rem;
}

.form-floating > label {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.form-check-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-info-alt {
    position: relative;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, #001f3f 0%, var(--dark-bg) 100%);
    padding: 3rem;
    color: var(--text-color);
    overflow: hidden;
    isolation: isolate;
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-header {
    margin-bottom: 3rem;
}

.info-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.info-header p {
    color: rgba(255, 255, 255, 0.7);
}

.quick-contacts {
    margin-bottom: 3rem;
}

.quick-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.qc-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    flex-shrink: 0;
    align-self: flex-start;
    aspect-ratio: 1;
    box-sizing: border-box;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qc-content {
    flex: 1;
    min-width: 0;
}

.qc-icon i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.qc-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.qc-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.social-media {
    margin-top: 3rem;
}

.social-media h4 {
    margin-bottom: 1.5rem;
}

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

.social-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-item:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    color: white;
}

.social-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
}

.info-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

.pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
}

/* Contact form + Information — mobile: largura útil, overlay em toda a coluna, ícones circulares */
@media (max-width: 991.98px) {
    .contact-form-section-alt {
        padding: 2.5rem 0;
        overflow-x: hidden;
        overflow-x: clip;
    }

    .contact-form-section-alt > .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }

    .contact-wrapper {
        border-radius: 16px;
    }

    .contact-wrapper .row > [class*="col-"] {
        min-height: 0;
    }

    .contact-form-section-alt .contact-form-alt,
    .contact-form-section-alt .contact-info-alt {
        padding: 1.25rem 1rem;
    }

    .contact-info-alt {
        height: auto;
        min-height: 0;
        border-radius: 0 0 16px 16px;
    }

    .contact-wrapper .row > .col-lg-6:first-child .contact-form-alt {
        border-radius: 16px 16px 0 0;
    }

    .contact-info-alt .info-header {
        margin-bottom: 1.75rem;
    }

    .contact-info-alt .info-header h2 {
        font-size: 1.65rem;
    }

    .contact-info-alt .quick-contacts {
        margin-bottom: 2rem;
    }

    .contact-info-alt .quick-contact-item {
        margin-bottom: 1.25rem;
    }

    .info-background {
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }

    .pattern-overlay {
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        background-size: 16px 16px;
        background-repeat: repeat;
        background-position: 0 0;
        opacity: 0.32;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .contact-info-alt .qc-content p {
        font-size: 0.95rem;
        line-height: 1.55;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .contact-info-alt .qc-content a.contact-phone-link {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .contact-form-section-alt > .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact-form-section-alt .contact-form-alt,
    .contact-form-section-alt .contact-info-alt {
        padding: 1.1rem 0.85rem;
    }
}

.faq-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.faq-section .accordion-button::after {
    filter: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: var(--card-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .contact-form-alt,
    .contact-info-alt {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section-alt {
        padding: 80px 0;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

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

/* Dropdown Menu Modern Styles */
.navbar .dropdown-menu {
    background: rgba(31, 31, 31, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar .dropdown-item {
    color: var(--text-color);
    padding: 0.7rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background: rgba(160, 160, 160, 0.2);
    color: #d0d0d0;
    transform: translateX(5px);
}

.navbar .dropdown-item:focus,
.navbar .dropdown-item:active {
    background: rgba(160, 160, 160, 0.2) !important;
    color: #d0d0d0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar .dropdown-item.active {
    background: rgba(160, 160, 160, 0.25);
    box-shadow: 0 2px 8px rgba(120, 120, 120, 0.2);
}

@media (min-width: 993px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 20px;
        width: 12px;
        height: 12px;
        background: rgba(31, 31, 31, 0.95);
        transform: rotate(45deg);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

@media (max-width: 992px) {
    .navbar .dropdown-menu {
        background: transparent;
        border: none;
        padding-left: 1.5rem;
        margin-top: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .navbar .dropdown-toggle::after {
        border-top-color: #bdbdbd;
    }

    .navbar .dropdown-item {
        padding: 0.5rem 1rem;
        border-left: 2px solid rgba(160, 160, 160, 0.35);
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item.active {
        background: transparent;
        color: #d0d0d0;
        transform: none;
        border-left: 2px solid #9a9a9a;
    }

    .navbar .dropdown-item.active {
        background: transparent;
        box-shadow: none;
    }
}

/* Dropdown Item Hover Effect */
.navbar .dropdown-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.9rem;
}

.navbar .dropdown-item:hover {
    background: rgba(0, 123, 255, 0.1);
}

@media (min-width: 993px) {
    .navbar .dropdown-item:hover {
        transform: translateX(5px);
    }

    .navbar .dropdown-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: width 0.3s ease;
        opacity: 0;
    }

    .navbar .dropdown-item:hover::before {
        width: 10px;
        opacity: 1;
    }
}

/* Dropdown Toggle Arrow */
.navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.navbar .dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

.navbar .show .dropdown-toggle::after {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .navbar .dropdown-toggle::after {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Remove language-selector specific styles */
// ... existing code ...

/* Info Sections and Cards */
.info-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.contact-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.contact-info h3 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.contact-info ul li i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-info ul li a:hover {
    color: var(--accent-color);
}

/* Contact Info Alternative */
.contact-info-alt {
    position: relative;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, #001f3f 0%, var(--dark-bg) 100%);
    padding: 3rem;
    color: var(--text-color);
    overflow: hidden;
    isolation: isolate;
}

.info-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Info Items */
.info-item {
    background: rgba(0, 123, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.info-item i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Contact Methods */
.contact-methods {
    background: rgba(0, 123, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.method-icon {
    background: var(--gradient);
}

/* Stats Section */
.stat-item {
    border: 1px solid rgba(0, 123, 255, 0.1);
    background: rgba(0, 123, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--accent-color);
    background: rgba(0, 123, 255, 0.1);
}

.stat-item h3 {
    color: var(--accent-color);
}

/* Quick Contacts */
.quick-contacts {
    background: rgba(0, 123, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.quick-contact-item {
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

/* Social Media Section */
.social-media {
    margin-top: 3rem;
}

.social-media h4 {
    margin-bottom: 1.5rem;
}

.social-grid a {
    background: rgba(0, 123, 255, 0.05);
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
}

.social-grid a:hover {
    background: var(--gradient);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #001f3f 100%);
}

.newsletter-form .input-group {
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.newsletter-form .btn:hover {
    background: var(--gradient);
    transform: translateY(-2px);
}

/* Language Selector Styles */
.language-selector .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-selector .dropdown-menu {
    min-width: 120px;
}

.language-selector .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-selector .dropdown-item:hover,
.language-selector .dropdown-item.active {
    background: rgba(0, 123, 255, 0.1);
}

.language-selector .fa-globe {
    font-size: 1.2rem;
}

/* Language Selector Mobile Styles */
@media (max-width: 992px) {
    .language-selector .dropdown-menu {
        position: static !important;
        width: 100%;
        margin-top: 0;
        background: transparent;
        border: none;
        padding-left: 1.5rem;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .language-selector .dropdown-item {
        padding: 0.5rem 1rem;
        border-left: 2px solid rgba(0, 123, 255, 0.2);
        color: var(--text-color);
        transition: all 0.3s ease;
    }

    .language-selector .dropdown-item:hover,
    .language-selector .dropdown-item.active {
        background: transparent;
        color: var(--accent-color);
        transform: none;
        border-left: 2px solid var(--accent-color);
    }

    .language-selector .nav-link {
        padding: 0.7rem 1rem;
        color: var(--accent-color) !important;
    }

    .language-selector .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
        transition: transform 0.3s ease;
    }

    .language-selector .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }

    /* Keep Language dropdown open by default on mobile */
    #languageDropdown + .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    #languageDropdown {
        color: var(--accent-color) !important;
    }
}

/* Final navbar state overrides (force gray, no blue) */
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link:active,
.navbar .nav-link:focus-visible,
.navbar .nav-link.active,
.navbar .nav-link.show,
.navbar .dropdown-toggle:hover,
.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:active,
.navbar .dropdown-toggle:focus-visible,
.navbar .dropdown-toggle.active,
.navbar .dropdown-toggle.show,
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus-visible,
.navbar .dropdown-item.active {
    color: #d0d0d0 !important;
    background-color: rgba(150, 150, 150, 0.2) !important;
    border-color: rgba(150, 150, 150, 0.45) !important;
    box-shadow: none !important;
    outline: none !important;
}

@media (max-width: 992px) {
    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus,
    .navbar .dropdown-item:active,
    .navbar .dropdown-item.active {
        background: transparent !important;
        border-left: 2px solid #9a9a9a !important;
        color: #d0d0d0 !important;
    }
}

/* ===== Team Page (Nossa Equipe) ===== */
.team-page {
    background: #141414;
}

.team-hero {
    position: relative;
    margin-top: 80px;
    padding: 7rem 0 5rem;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
}

.team-hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width:  min(900px, 120vw);
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.team-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
}

.team-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-hero-lead {
    font-size: 1.2rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.team-hero-stats {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

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

.team-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
}

.team-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.team-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

.team-values {
    padding: 0 0 4rem;
    margin-top: -1rem;
}

.team-value-card {
    height: 100%;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.95), rgba(20, 20, 20, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.team-value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.team-value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #141414;
    background: linear-gradient(135deg, #f5f5f5, #c4c4c4);
    border-radius: 50%;
}

.team-value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.team-value-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.65;
}

.team-grid-section {
    padding: 2rem 0 5rem;
}

.team-section-subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
}

.team-grid > div {
    display: flex;
}

.team-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(28, 28, 28, 0.98) 0%, rgba(18, 18, 18, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.team-card--lead {
    border-color: rgba(255, 255, 255, 0.1);
}

.team-card--lead .team-card-photo-wrap,
.team-card-photo-wrap {
    position: relative;
    flex-shrink: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.team-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(15%) contrast(1.02);
}

.team-card:hover .team-card-photo {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.team-card-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(14, 14, 14, 0.85) 100%);
    pointer-events: none;
}

.team-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.5rem 1.5rem 1.75rem;
}

.team-card:not(.team-card--lead) .team-card-body::before {
    content: '';
    display: block;
    min-height: calc(0.7rem * 1.2 + 0.5rem);
    margin-bottom: 0;
}

.team-card-tier {
    display: block;
    min-height: calc(0.7rem * 1.2 + 0.5rem);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    line-height: 1.2;
}

.team-card-name {
    min-height: calc(1.35rem * 1.25 * 2 + 0.35rem);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #fff;
    line-height: 1.25;
}

.team-card-role {
    min-height: calc(0.95rem * 1.4 * 2);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.team-card--lead .team-card-role {
    color: rgba(255, 255, 255, 0.7);
}

.team-card-bio {
    flex: 1;
    min-height: calc(0.88rem * 1.55 * 4);
    margin: 0.75rem 0 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.team-card-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-card-social-link {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-card-social-link i {
    width: 1rem;
    text-align: center;
}

.team-card-social-link:not([href]) {
    cursor: pointer;
}

.team-card-social-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    transform: translateY(-2px);
}

.team-trust-banner {
    padding: 0 0 5rem;
}

.team-trust-inner {
    padding: 3rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.6) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.team-trust-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.35;
}

.team-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.team-cta-btn,
.team-cta-btn-secondary {
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.team-cta-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.team-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.team-page .reveal,
.team-page .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 768px) {
    .team-hero {
        padding: 5.5rem 0 3.5rem;
    }

    .team-hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .team-stat-divider {
        width: 60px;
        height: 1px;
    }

    .team-trust-inner {
        padding: 2rem 1.25rem;
    }

    .team-trust-inner h2 {
        font-size: 1.35rem;
    }

    .team-cta-actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        max-width: 320px;
        margin: 0.5rem auto 0;
    }

    .team-cta-btn,
    .team-cta-btn-secondary {
        width: 100%;
        margin: 0 !important;
        white-space: normal;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Third operating country — teased, not named */
.aisek-third-country {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.88em;
    font-weight: 600;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
    cursor: default;
    white-space: nowrap;
}

.aisek-countries-line {
    display: inline;
}