/*!
Theme Name: albistudios
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: albistudios
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

albistudios is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* ==========================================================================
   ALBISTUDIOS - UNIFIED STYLESHEET
   ========================================================================== */

/* ================= VARIÁVEIS GLOBAIS ================= */
:root {
    --bg-dark: #05050f;
    --bg-card: #0d0d1f;
    --purple: #9b2faf;
    --purple-neon: #d04ded;
    --star-yellow: #f1c40f;
    --accent-yellow: #ffb800;
    --text-white: #ffffff;
    --text-muted: #9ba0b8;
    --font-main: 'Poppins', sans-serif;
    --font-display: 'Bangers', cursive;
    --font-alt: 'Montserrat', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glass-bg: rgba(13, 13, 31, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ================= UTILITIES & GLOBAL ================= */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-badge {
    background-color: var(--purple);
    display: inline-block;
    padding: 10px 35px;
    font-weight: 400;
    font-size: 2.2rem;
    margin-left: -24px;
    letter-spacing: 2px;
    margin-bottom: 50px;
    font-family: var(--font-display);
    transform: rotate(-3deg);
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.4);
    color: var(--text-white);
}

.tag-news {
    background-color: #d12255;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(209, 34, 85, 0.4);
    color: white;
}

.tag-category {
    background-color: var(--purple);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    align-self: flex-start;
}

.header-spacer { height: 100px; }

/* ================= BUTTONS & ARROWS ================= */
.btn-primary-small {
    background-color: var(--purple);
    padding: 10px 28px;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary-small:hover {
    background-color: var(--purple-neon);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(155, 47, 175, 0.5);
}

.btn-solid {
    background-color: var(--text-white);
    color: var(--bg-dark);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 0px rgba(255, 255, 255, 0.15);
}

.btn-solid:hover {
    transform: translateY(-4px);
    background-color: #f8f8f8;
    color: var(--purple);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
}

.btn-solid:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0px rgba(255, 255, 255, 0.1);
}

.btn-submit {
    background-color: var(--text-white);
    color: var(--bg-dark);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 0px rgba(255, 255, 255, 0.15);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-submit:hover {
    transform: translateY(-4px);
    background-color: var(--star-yellow);
    color: var(--bg-dark);
    box-shadow: 0 12px 25px rgba(241, 196, 15, 0.3);
}

.btn-submit:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0px rgba(241, 196, 15, 0.1);
}

.custom-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 10;
    transition: var(--transition);
    pointer-events: auto; 
}

.custom-slider-arrow svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.custom-slider-arrow.prev { transform: rotate(180deg); }
.custom-slider-arrow:not(.prev):hover svg { transform: scale(1.15); }
.custom-slider-arrow.prev:hover svg { transform: scale(1.15); }

.back-arrow, .front-arrow {
    fill: rgba(0,0,0,0.4);  
    stroke: #FFFFFF;
    stroke-width: 3px;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.custom-slider-arrow:hover .back-arrow { fill: var(--purple); stroke: var(--purple);}
.custom-slider-arrow:hover .front-arrow { fill: var(--star-yellow); stroke: var(--star-yellow);}

/* ================= FORMS & INPUTS ================= */
.input-group { position: relative; }

.input-group input, .input-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 20px;
    color: white;
    font-family: var(--font-main);
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition);
}

.input-group label {
    position: absolute;
    left: 20px;
    top: 22px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: var(--transition);
    background-color: var(--bg-card);
    padding: 0 10px;
    border-radius: 4px;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -12px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--star-yellow);
    font-weight: 700;
    background: var(--bg-card);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(155, 47, 175, 0.15);
    background: rgba(0,0,0,0.6);
}

/* ================= HEADER & DESKTOP NAV ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5% 40px;
    background: rgba(5, 5, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    margin-bottom: -30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9900; 
    border-bottom: 1px solid var(--glass-border);
}

.logo img { 
    width: 210px; 
    height: auto; 
    transition: var(--transition); 
    position: relative; 
    z-index: 10001; 
}
.logo img:hover { transform: scale(1.05); }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.desktop-nav a:not(.btn-primary-small):hover {
    color: var(--star-yellow);
}

.social-header {
    display: flex;
    gap: 16px;
    font-size: 1.4rem;
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 24px;
}

.social-header a:hover { color: var(--purple-neon); transform: translateY(-3px); }

/* Mobile Menu Elements */
.mobile-menu-open {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    position: relative; 
    z-index: 10001;
}

.mobile-menu-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 15, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999; 
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}

.mobile-nav-content a {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.mobile-nav-content a:hover { color: var(--star-yellow); }

.social-header-mobile {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    font-size: 2rem;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 100px 20px 60px;
    background: #020208;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-robot img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 20px 40px rgba(155, 47, 175, 0.2));
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-robot img:hover { transform: translateY(-15px); }

.footer-email {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 1.3rem;
    font-weight: 600;
}

.social-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 2rem;
    margin-bottom: 50px;
}

.social-footer a:hover { color: var(--purple-neon); transform: scale(1.2) translateY(-5px); }

/* ================= DECORATIONS & ALERTS ================= */
.star-decor {
    position: absolute;
    color: var(--star-yellow);
    font-size: 1.2rem;
    animation: float 4s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0) scale(0.9); opacity: 0.6; }
    100% { transform: translateY(-15px) scale(1.1); opacity: 1; text-shadow: 0 0 15px var(--star-yellow); }
}

.star-1 { top: 10%; left: 5%; animation-delay: 0s; }
.star-2 { bottom: 15%; right: 8%; animation-delay: 1s; }
.star-3 { top: 20%; right: 20%; animation-delay: 2s; }
.star-4 { bottom: 10%; left: 10%; animation-delay: 0.5s; }

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-btn svg { width: 36px; height: 36px; }

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(-10deg);
    animation: none; 
    background-color: #20b858;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Toast Notification (Contact Form) */
.toast-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #01875f 0%, #02b680 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(1, 135, 95, 0.4);
    transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 99999;
}
.toast-notification.show { bottom: 40px; }


/* =========================================================
   PAGE SPECIFIC: HOME (INDEX)
   ========================================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 550px;
    background-color: var(--bg-dark);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.hero-slider, .hero-slide { height: 100%; outline: none; }
.slick-list, .slick-track { height: 100% !important; }

.video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a082e;
    height: 100%;
    overflow: hidden;
}

.fill-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,15,0.85) 0%, rgba(155,47,175,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
    margin-top: -40px; 
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 0.9;
    letter-spacing: 3px;
    font-family: var(--font-display);
    text-shadow: 0 15px 30px rgba(0, 0, 0, 0.9);
    margin-bottom: 24px;
    color: var(--text-white);
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.hero-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none; 
}

.slick-dots {
    position: absolute;
    bottom: 80px;
    width: 100%;
    text-align: center;
    z-index: 10;
    list-style: none;
}

.slick-dots li { display: inline-block; margin: 0 6px; }
.slick-dots li button {
    font-size: 0; width: 10px; height: 10px; padding: 0; cursor: pointer; border: 0;
    background: rgba(255,255,255,0.3); border-radius: 50%; transition: var(--transition);
}
.slick-dots li.slick-active button {
    background: var(--star-yellow); transform: scale(1.5); box-shadow: 0 0 12px var(--star-yellow);
}

/* Home: Latest Games Slider */
.latest-games-section {
    padding: 80px 0;
    background: radial-gradient(circle at right, rgba(155, 47, 175, 0.05) 0%, var(--bg-dark) 50%);
}

.slider-wrapper { display: flex; align-items: center; position: relative; gap: 15px; }
.slider-track { width: 100%; display: block; padding: 20px 0 40px; margin: 0 -12px; }

.game-card-slider {
    margin: 0 12px; 
    display: flex !important; 
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
    outline: none;
}

.game-card-slider:hover {
    transform: translateY(-10px);
    border-color: rgba(155, 47, 175, 0.5);
    box-shadow: 0 20px 40px rgba(155, 47, 175, 0.2);
}

.card-image-wrapper {
    border-radius: 12px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 3/4; position: relative;
}

.game-cover {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.game-card-slider:hover .game-cover { transform: scale(1.08); }

.game-info { display: flex; flex-direction: column; flex-grow: 1; }
.meta { display: flex; flex-direction: column; font-size: 0.7rem; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.5px; font-family: var(--font-alt); }
.developer { color: var(--accent-yellow); }
.publisher { color: var(--purple-neon); }

.game-title {
    font-size: 1.25rem; font-weight: 700; line-height: 1.4; margin-bottom: 20px; flex-grow: 1;
}

.game-platforms {
    display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px;
}

.platforms-icons { display: flex; gap: 8px; }
.platforms-icons a {
    color: var(--text-white); font-size: 1rem; display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); transition: var(--transition);
}
.platforms-icons a:hover { background: var(--purple); transform: translateY(-4px); }

/* Home: Blog Grid */
.games-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; }
.games-column { display: flex; flex-direction: column; gap: 30px; }

.game-card {
    position: relative; border-radius: 20px; overflow: hidden; cursor: pointer;
    border: 1px solid var(--glass-border); box-shadow: 0 15px 40px rgba(0,0,0,0.5); isolation: isolate;
}

.game-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.large-card { height: 100%; min-height: 500px; }
.small-card { height: 50%; min-height: 235px; }

.card-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    transition: padding-bottom var(--transition); z-index: 2;
}

.card-content h3 { font-size: 2.2rem; font-weight: 900; line-height: 1.1; text-transform: uppercase; font-family: var(--font-alt); }
.game-card:hover img { transform: scale(1.08); }
.game-card:hover .card-content { padding-bottom: 50px; }

/* Home: Contact Section */
.contact-container {
    display: flex; justify-content: space-between; gap: 60px; background: var(--glass-bg);
    padding: 60px; border-radius: 24px; border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px); box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.contact-info { flex: 1; }
.contact-info p { font-size: 1.15rem; line-height: 1.7; margin-bottom: 24px; color: var(--text-muted); }

.email-info { display: flex; align-items: center; gap: 20px; margin-top: 40px; font-weight: 700; font-size: 1.2rem; }
.email-info i {
    color: var(--text-white); font-size: 1.5rem; background: linear-gradient(135deg, var(--purple) 0%, #f1c40f 100%);
    padding: 16px; border-radius: 50%; box-shadow: 0 10px 20px rgba(155, 47, 175, 0.3);
}

.contact-form { flex: 1.2; }
.contact-form form { display: flex; flex-direction: column; gap: 28px; }


/* =========================================================
   PAGE SPECIFIC: SINGLE GAME
   ========================================================= */
.single-game-hero { 
    position: relative; width: 100%; height: 90vh; min-height: 600px; 
    display: flex; align-items: center; justify-content: flex-start; 
    overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); padding-top: 100px; 
}
.hero-bg-image { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    object-fit: cover; z-index: 1; filter: brightness(0.6) contrast(1.1); 
}
.hero-gradient-overlay { 
    position: absolute; inset: 0; 
    background: linear-gradient(90deg, rgba(5,5,15,0.95) 0%, rgba(5,5,15,0.6) 50%, rgba(5,5,15,0.1) 100%), linear-gradient(0deg, var(--bg-dark) 0%, transparent 40%); 
    z-index: 2; 
}
.hero-content-wrapper { position: relative; z-index: 3; max-width: 800px; }
.game-title-text { 
    font-family: var(--font-display); font-size: 7rem; line-height: 0.9; letter-spacing: 4px; 
    background: linear-gradient(to right, #fff, #b8b8d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
}
.hero-subtitle { 
    font-size: 1.4rem; color: rgba(255,255,255,0.9); border-left: 2px solid var(--purple-neon); 
    padding-left: 15px; margin-top: 10px; 
}

.game-details-section { padding: 80px 0; background: var(--bg-dark); }
.game-details-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.game-description h2 { font-family: var(--font-alt); font-size: 2.2rem; color: var(--star-yellow); margin-bottom: 25px; }
.game-description { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); }

.download-panel { 
    background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; 
    padding: 35px; backdrop-filter: blur(20px); position: sticky; top: 140px; 
}
.store-buttons { display: flex; flex-direction: column; gap: 12px; }
.store-btn { display: flex; align-items: center; gap: 15px; padding: 15px 20px; border-radius: 12px; border: 1px solid transparent; }
.store-btn .icon-wrapper { font-size: 1.8rem; width: 35px; display: flex; justify-content: center; }
.store-text span:first-child { font-size: 0.7rem; text-transform: uppercase; opacity: 0.7; display: block; }
.store-text span:last-child { font-size: 1.1rem; font-weight: 700; }

.btn-steam { background: #1b2838; border-color: #2a475e; }
.btn-playstation { background: #003087; }
.btn-apple { background: #333; }
.btn-google { background: #000; border-color: #01875f; }
.btn-generic { background: var(--purple); }

.gallery-section { padding: 80px 0; background: #0a0a1a; }
.gallery-wrapper { position: relative; }
.gallery-img-box { border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--glass-border); }
.gallery-img-box img { width: 100%; height: 100%; object-fit: cover; }
.gallery-controls { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }


/* =========================================================
   PAGE SPECIFIC: ABOUT US
   ========================================================= */
.about-hero {
    padding: 120px 0 80px; text-align: center; position: relative;
    background: radial-gradient(circle at center top, rgba(155, 47, 175, 0.15) 0%, var(--bg-dark) 70%);
}
.about-hero h1 { font-family: var(--font-display); font-size: 5rem; letter-spacing: 3px; margin-bottom: 20px; text-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.about-hero h1 span { color: var(--star-yellow); }
.about-hero p { font-size: 1.4rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; line-height: 1.6; }

.story-section { padding: 60px 0 100px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-text h2 { font-family: var(--font-alt); font-size: 2.5rem; font-weight: 900; margin-bottom: 25px; line-height: 1.2; text-transform: uppercase; }
.story-text p { font-size: 1.15rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }

.story-images { position: relative; }
.story-img-main { border-radius: 20px; border: 1px solid var(--glass-border); box-shadow: 0 20px 50px rgba(0,0,0,0.5); width: 90%; margin-left: auto; }
.story-img-float { 
    position: absolute; bottom: -30px; left: -20px; width: 50%; border-radius: 16px; 
    border: 4px solid var(--bg-dark); box-shadow: 0 15px 30px rgba(0,0,0,0.6); animation: float-img 6s ease-in-out infinite; 
}
@keyframes float-img { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.values-section { padding: 80px 0; background: url('https://www.transparenttextures.com/patterns/cubes.png') center/cover; position: relative; }
.values-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,5,15,0.95), rgba(5,5,15,0.85), rgba(5,5,15,0.95)); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px 30px; text-align: center; backdrop-filter: blur(10px); transition: var(--transition); }
.value-card:hover { transform: translateY(-10px); border-color: rgba(155, 47, 175, 0.4); box-shadow: 0 20px 40px rgba(155, 47, 175, 0.15); }
.value-icon { 
    width: 80px; height: 80px; background: linear-gradient(135deg, rgba(155, 47, 175, 0.2) 0%, rgba(241, 196, 15, 0.2) 100%); 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--star-yellow); margin: 0 auto 25px; border: 1px solid rgba(255,255,255,0.05); 
}
.value-card h3 { font-family: var(--font-alt); font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; }
.value-card p { color: var(--text-muted); line-height: 1.6; }

.team-section { padding: 100px 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.team-card { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--glass-border); cursor: pointer; aspect-ratio: 3/4; }
.team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease; filter: grayscale(80%) brightness(0.8); }
.team-card:hover .team-img { transform: scale(1.08); filter: grayscale(0%) brightness(1); }
.team-info { 
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px 20px 20px; 
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%); 
    transform: translateY(40px); transition: var(--transition); 
}
.team-card:hover .team-info { transform: translateY(0); }
.team-info h3 { font-family: var(--font-alt); font-size: 1.4rem; font-weight: 800; margin-bottom: 5px; color: var(--text-white); }
.team-info p { font-size: 0.9rem; font-weight: 600; color: var(--accent-yellow); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.team-social { display: flex; gap: 15px; opacity: 0; transition: opacity 0.4s ease 0.1s; }
.team-card:hover .team-social { opacity: 1; }
.team-social a { 
    color: var(--text-white); font-size: 1.2rem; background: rgba(255,255,255,0.1); width: 35px; height: 35px; 
    display: flex; align-items: center; justify-content: center; border-radius: 50%; backdrop-filter: blur(5px); 
}
.team-social a:hover { background: var(--purple); transform: translateY(-3px); }


/* =========================================================
   PAGE SPECIFIC: CONTACT
   ========================================================= */
.contact-hero {
    padding: 80px 0 40px; text-align: center; position: relative;
    background: url('https://www.transparenttextures.com/patterns/stardust.png') center/cover;
}
.contact-hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(circle at center, rgba(155, 47, 175, 0.1) 0%, var(--bg-dark) 80%);
}
.contact-hero .container { z-index: 2; }
.contact-hero h1 { font-family: var(--font-display); font-size: 5.5rem; letter-spacing: 4px; margin-bottom: 10px; text-shadow: 0 10px 20px rgba(0,0,0,0.5); color: var(--text-white); }
.contact-hero p { font-size: 1.3rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.contact-main { padding: 40px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }

.contact-cards { display: flex; flex-direction: column; gap: 25px; }
.info-card { 
    background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; 
    padding: 30px; display: flex; align-items: flex-start; gap: 20px; backdrop-filter: blur(10px); transition: var(--transition); 
}
.info-card:hover { transform: translateX(10px); border-color: rgba(155, 47, 175, 0.4); box-shadow: -10px 10px 30px rgba(0,0,0,0.4); }
.info-icon { 
    width: 60px; height: 60px; min-width: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; 
    font-size: 1.8rem; color: white; background: linear-gradient(135deg, var(--purple) 0%, #d04ded 100%); box-shadow: 0 10px 20px rgba(155, 47, 175, 0.3); 
}
.info-card.discord .info-icon { background: linear-gradient(135deg, #5865F2 0%, #7289da 100%); box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3); }
.info-card.business .info-icon { background: linear-gradient(135deg, var(--star-yellow) 0%, var(--accent-yellow) 100%); box-shadow: 0 10px 20px rgba(241, 196, 15, 0.3); }
.info-text h3 { font-family: var(--font-alt); font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; color: var(--text-white); }
.info-text p, .info-text a { color: var(--text-muted); font-size: 1rem; line-height: 1.5; transition: var(--transition); }
.info-text a:hover { color: var(--star-yellow); }

.form-wrapper { 
    background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 24px; 
    padding: 50px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); position: relative; overflow: hidden; 
}
.form-wrapper::before { 
    content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; 
    background: radial-gradient(circle, rgba(155,47,175,0.2) 0%, transparent 70%); border-radius: 50%; pointer-events: none; 
}
.form-wrapper h2 { font-family: var(--font-alt); font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.form-wrapper p.form-subtitle { color: var(--text-muted); margin-bottom: 35px; font-size: 1.1rem; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }


/* =========================================================
   PAGE SPECIFIC: TAXONOMY / ARCHIVE JOGOS
   ========================================================= */
.taxonomy-hero {
    position: relative; width: 100%; height: 45vh; min-height: 350px; 
    display: flex; align-items: center; justify-content: center; text-align: center; 
    overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); padding-top: 80px; 
    background: radial-gradient(circle at top, #25093a 0%, var(--bg-dark) 100%); border-bottom: 2px solid var(--purple);
}
.taxonomy-hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 15px; padding: 0 24px; }
.taxonomy-subtitle { color: var(--star-yellow); font-family: var(--font-alt); font-weight: 800; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; }
.taxonomy-title { 
    font-family: var(--font-display); font-size: 5rem; line-height: 1; letter-spacing: 4px; color: var(--text-white); 
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.8); text-transform: uppercase; margin: 0; 
    background: linear-gradient(to right, #fff, #b8b8d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
}
.taxonomy-description { font-family: var(--font-main); font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.taxonomy-content-section { padding: 80px 0 120px; background: var(--bg-dark); position: relative; }
.taxonomy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 40px; margin-top: 20px; }

.taxonomy-game-card { 
    background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; overflow: hidden; 
    transition: var(--transition); display: flex; flex-direction: column; height: 100%; backdrop-filter: blur(10px); text-decoration: none; 
}
.taxonomy-game-card:hover { transform: translateY(-10px); border-color: var(--purple-neon); box-shadow: 0 15px 35px rgba(155, 47, 175, 0.3); }
.taxonomy-game-card:hover .game-card-img-wrapper img { transform: scale(1.08); }

.game-card-title { font-family: var(--font-alt); font-size: 1.5rem; font-weight: 800; color: var(--text-white); margin-bottom: 15px; line-height: 1.2; transition: color var(--transition); }
.taxonomy-game-card:hover .game-card-title { color: var(--star-yellow); }
.game-card-excerpt { font-family: var(--font-main); font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }

.game-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--glass-border); padding-top: 20px; margin-top: auto; }
.game-platforms-icons { display: flex; gap: 12px; font-size: 1.3rem; color: var(--text-muted); }
.game-platforms-icons i { transition: var(--transition); }
.taxonomy-game-card:hover .game-platforms-icons i { color: var(--text-white); }

.btn-view-game { 
    font-size: 0.9rem; font-weight: 700; color: var(--bg-dark); background: var(--star-yellow); padding: 8px 16px; 
    border-radius: 6px; text-transform: uppercase; display: flex; align-items: center; gap: 8px; transition: var(--transition); 
}
.taxonomy-game-card:hover .btn-view-game { background: #fff; box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4); }

.taxonomy-pagination { margin-top: 80px; text-align: center; }
.taxonomy-pagination .nav-links { display: inline-flex; gap: 10px; background: var(--glass-bg); padding: 10px; border-radius: 12px; border: 1px solid var(--glass-border); }
.taxonomy-pagination .page-numbers { 
    display: inline-flex; align-items: center; justify-content: center; min-width: 45px; height: 45px; padding: 0 15px; 
    background: rgba(255,255,255,0.05); color: var(--text-white); font-family: var(--font-alt); font-weight: 700; 
    font-size: 1.1rem; border-radius: 8px; text-decoration: none; transition: var(--transition); border: 1px solid transparent; 
}
.taxonomy-pagination .page-numbers:hover { background: rgba(155, 47, 175, 0.2); border-color: var(--purple); color: var(--text-white); }
.taxonomy-pagination .page-numbers.current { background: var(--star-yellow); color: var(--bg-dark); border-color: var(--star-yellow); box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4); }


/* =========================================================
   RESPONSIVE (MEDIA QUERIES) UNIFICADAS
   ========================================================= */

@media (max-width: 992px) {
    /* Home */
    .games-grid { grid-template-columns: 1fr; }
    .large-card { min-height: 400px; }
    .games-column { flex-direction: row; }
    .small-card { flex: 1; height: auto; min-height: 250px; }
    .contact-container { flex-direction: column; padding: 40px; }
    .hero-content h1 { font-size: 4rem; }
    
    /* Single Game */
    .game-details-grid { grid-template-columns: 1fr; }
    .game-title-text { font-size: 4rem; }
    
    /* About */
    .about-hero h1 { font-size: 4rem; }
    .story-grid { grid-template-columns: 1fr; }
    .story-images { margin-top: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .info-card:hover { transform: translateY(-5px); transform: translateX(0); }
}

@media (max-width: 768px) {
    /* Global / Header / Utilities */
    .navbar { padding: 15px 24px 30px; }
    .logo img { width: 130px; }
    .desktop-nav { display: none; }
    .mobile-menu-open { display: block; }
    .section-padding { padding: 60px 0; }
    .section-badge { font-size: 1.6rem; margin-left: 0; transform: rotate(0); padding: 8px 24px;}
    
    .whatsapp-btn { width: 55px; height: 55px; bottom: 20px; right: 20px; }
    .whatsapp-btn svg { width: 30px; height: 30px; }

    /* Home */
    .hero-section { height: 75vh; min-height: 500px; }
    .hero-content { margin-top: -20px; }
    .hero-content h1 { font-size: 3rem; letter-spacing: 1px; }
    .hero-content p { font-size: 1.1rem; }
    .hero-slider-controls { padding: 0 10px; }
    .custom-slider-arrow { display: none !important; } 
    .games-column { flex-direction: column; }
    .card-content h3 { font-size: 1.5rem; }
    .contact-container { padding: 30px 20px; border-radius: 16px; }
    .btn-solid { width: 100%; font-size: 1.4rem; padding: 14px 20px;}

    /* About */
    .about-hero { padding: 80px 0 60px; }
    .about-hero h1 { font-size: 3rem; }
    .about-hero p { font-size: 1.1rem; }
    .story-text h2 { font-size: 1.8rem; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .team-info { transform: translateY(0); padding: 20px 15px 15px; }
    .team-social { opacity: 1; }
    .team-info h3 { font-size: 1.1rem; }
    .team-info p { font-size: 0.8rem; }
    
    /* Contact */
    .contact-hero { padding: 60px 0 20px; }
    .contact-hero h1 { font-size: 3.5rem; letter-spacing: 2px;}
    .contact-hero p { font-size: 1.1rem; }
    .input-row { grid-template-columns: 1fr; gap: 25px; }
    .form-wrapper { padding: 30px 20px; }
    .form-wrapper h2 { font-size: 1.6rem; }
    .info-card { flex-direction: column; text-align: center; align-items: center; padding: 30px 20px;}
    
    /* Taxonomy */
    .taxonomy-title { font-size: 3.5rem; }
    .taxonomy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    /* About */
    .team-grid { grid-template-columns: 1fr; }
}