/*
Theme Name: Claramente
Theme URI: https://play.google.com/store/apps/details?id=online.pedindo.claramente.twa
Author: Jules
Description: Tema de landing page para o jogo mobile Claramente. Estética vibrante, Cartoon HD.
Version: 1.0
Text Domain: claramente
*/

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&family=Luckiest+Guy&family=Bangers&family=Nunito:wght@400;700&display=swap');

/* Resets e variáveis globais */
:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --primary-color: #ff004c;
    --secondary-color: #00f7ff;
    --accent-color: #9d00ff;
    --glow-color: rgba(0, 247, 255, 0.6);
    --glass-bg: rgba(10, 10, 15, 0.85);
    --glass-border: rgba(255, 255, 255, 0.15);
    --cartoon-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
}

/* Custom Scrollbar estilo Cartoon */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Luckiest Guy', cursive;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    /* Adicionado ruído suave para textura */
    background-image: radial-gradient(circle at top right, rgba(156, 39, 176, 0.15), transparent 40%),
                      radial-gradient(circle at bottom left, rgba(0, 255, 255, 0.1), transparent 40%);
}

h1, h2, h3, h4 {
    margin: 0;
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: 2px;
    text-shadow: var(--cartoon-shadow);
    color: var(--text-color);
}

p {
    margin: 0 0 1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.align-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.section-header h2 {
    font-size: 4rem;
    color: var(--secondary-color);
    text-shadow: var(--cartoon-shadow), 0 0 30px var(--secondary-color);
    margin-bottom: 15px;
    animation: super-neon-text 3s infinite, floating-game-element 5s ease-in-out infinite;
    text-transform: uppercase;
}
.section-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
}
.inline-icon {
    width: 30px;
    vertical-align: middle;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.inline-icon:hover {
    transform: scale(1.3) rotate(15deg);
}

/* Animations Turbinadas */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px var(--glow-color), inset 0 0 10px var(--glow-color); }
    50% { box-shadow: 0 0 40px var(--glow-color), inset 0 0 20px var(--glow-color); }
    100% { box-shadow: 0 0 10px var(--glow-color), inset 0 0 10px var(--glow-color); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}
@keyframes floatX {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}
@keyframes shineEffect {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}
@keyframes rotateBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes neonPulse {
    0% { filter: drop-shadow(0 0 5px var(--secondary-color)); opacity: 0.8; }
    50% { filter: drop-shadow(0 0 20px var(--secondary-color)); opacity: 1; }
    100% { filter: drop-shadow(0 0 5px var(--secondary-color)); opacity: 0.8; }
}

@keyframes floating-game-element {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(5px) rotate(-2deg); }
}

@keyframes slide-in-glitch {
    0% { transform: translateX(-100%) skewX(-20deg); opacity: 0; }
    60% { transform: translateX(10%) skewX(10deg); opacity: 1; }
    80% { transform: translateX(-5%) skewX(-5deg); }
    100% { transform: translateX(0) skewX(0); }
}
@keyframes super-neon-text {
    0% { color: var(--primary-color); text-shadow: 0 0 10px var(--primary-color); }
    50% { color: var(--accent-color); text-shadow: 0 0 20px var(--accent-color); }
    100% { color: var(--primary-color); text-shadow: 0 0 10px var(--primary-color); }
}
@keyframes backgroundPan {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}
@keyframes float-particles {
    0% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 0.8; }
}
.particle-fx {
    animation: float-particles 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes btnBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particulas e Cursor Magico */
#magic-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(30,144,255,0) 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    mix-blend-mode: overlay;
}
#particle-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}
.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
    animation: riseUp 3s forwards;
}
@keyframes riseUp {
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

/* Efeitos Especiais Extras */
.mouse-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: shrinkTrail 0.5s linear forwards;
    z-index: 10000;
    transform: translate(-50%, -50%);
}
@keyframes shrinkTrail {
    100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}
.glitch-text {
    animation: glitch 1.5s linear infinite;
}
@keyframes glitch {
    0% { transform: translate(0); text-shadow: 0 0 0 #000; }
    20% { transform: translate(-2px, 2px); text-shadow: -2px 0 var(--primary-color), 2px 0 var(--secondary-color); }
    40% { transform: translate(-2px, -2px); text-shadow: 2px 0 var(--primary-color), -2px 0 var(--secondary-color); }
    60% { transform: translate(2px, 2px); text-shadow: -2px 0 var(--primary-color), 2px 0 var(--secondary-color); }
    80% { transform: translate(2px, -2px); text-shadow: 2px 0 var(--primary-color), -2px 0 var(--secondary-color); }
    100% { transform: translate(0); text-shadow: 0 0 0 #000; }
}

/* Animations Scroll & Tilt 3D */
.reveal {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: slide-in-glitch 1s ease-out;
}
.tilt-card {
    transition: transform 0.1s;
    will-change: transform;
    transform-style: preserve-3d;
}
.tilt-inner {
    transform: translateZ(30px);
    display: block;
}

/* Buttons com efeito Jelly/3D AAA */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Luckiest Guy', cursive;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    /* Transição elástica (bouncy) */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
}
.btn span {
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
}
.btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 1;
}
.btn:hover {
    transform: translateY(-8px) scale(1.08);
}
.btn:hover .btn-shine {
    animation: shineEffect 0.8s ease-in-out infinite;
}
.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color), var(--accent-color));
    background-size: 200% 200%;
    color: #fff;
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--accent-color);
    animation: btnBg 3s ease infinite;
    border: 3px solid #fff;
}
.btn-primary span {
    text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
}
.btn-primary:hover {
    box-shadow: 0 15px 30px rgba(30,144,255,0.6);
}
.btn-primary:active {
    transform: translateY(4px) scale(0.98);
}
.btn-secondary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    color: #fff;
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--accent-color);
    animation: btnBg 3s ease infinite;
    border: 3px solid #fff;
}
.btn-secondary:hover {
    box-shadow: 0 15px 30px rgba(255,71,87,0.6);
}
.btn-secondary:active {
    transform: translateY(4px) scale(0.98);
}

/* Header Glassmorphism */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    max-height: 60px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 10px var(--accent-color));
}
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}
.main-navigation a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--secondary-color);
}
.main-navigation a:hover {
    color: var(--secondary-color);
}
.main-navigation a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    text-align: center;
    overflow: hidden;
    background: transparent;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 1;
}
.hero-logo {
    max-width: 450px;
    width: 100%;
    margin-bottom: 20px;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.8)) drop-shadow(0px 0px 30px var(--glow-color));
    animation: floating-game-element 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
.hero-subtitle {
    font-family: 'Bangers', cursive;
    font-size: 2.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #ffffff;
    text-shadow: 3px 3px 0px var(--accent-color), 5px 5px 0px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.hero-mascots {
    max-width: 600px;
    width: 100%;
    display: block;
    margin: 0 auto;
    animation: floating-game-element 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.9));
    position: relative;
    z-index: 2;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.6)); }
    50% { transform: translateY(-20px) scale(1.05); filter: drop-shadow(0px 25px 30px var(--glow-color)); }
}
.animate-bounce {
    animation: bounce 3s ease-in-out infinite;
}

/* Roleta Section */
.roleta-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
    background-image: linear-gradient(to bottom, var(--bg-color), var(--accent-color));
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 20px;
}
.card-wrapper {
    position: relative;
    border-radius: 25px;
    background: transparent;
    padding: 4px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}
.card-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--bg-color), var(--bg-color));
    z-index: -1;
    transition: all 0.4s ease;
}
.card-wrapper:hover {
    animation: pulseGlow 1.5s infinite;
    transform: translateY(-15px);
    z-index: 10;
}
.card-wrapper:hover::before {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    animation: rotateBorder 3s ease infinite;
}
.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}
/* Efeito de vidro passando por cima do card */
.category-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: rgba(255,255,255,0.5);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}
.card-wrapper:hover .category-card::after {
    opacity: 1;
    transform: rotate(45deg) translateY(20%);
}
.card-wrapper:hover .category-card {
    transform: scale(1.02);
    background: var(--glass-bg);
}
.category-card img {
    height: 110px;
    margin-bottom: 20px;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.9));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s;
    position: relative;
    z-index: 2;
}
.card-wrapper:hover .category-card img {
    transform: translateY(-15px) scale(1.2) rotate(5deg);
    filter: drop-shadow(0 20px 20px rgba(0,255,255,0.4));
}
.category-card h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #000;
    position: relative;
    z-index: 2;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

/* Modos Section */
.modos-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.modos-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
}
.modos-section .container {
    position: relative;
    z-index: 2;
}
.modos-section .content-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 40px;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.text-content {
    flex: 1;
    min-width: 300px;
    margin-right: 50px;
}
.text-content h2 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: var(--cartoon-shadow);
}
.subtitle-highlight {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-family: 'Luckiest Guy', cursive;
    text-shadow: 3px 3px 0 #000;
}
.image-content {
    flex: 1;
    min-width: 300px;
}
.modos-images {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.modo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 4px solid #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}
.modo-img.active {
    opacity: 1;
    z-index: 1;
}

/* Mecanicas Section */
.mecanicas-section {
    padding: 120px 0;
    background: var(--bg-color);
    position: relative;
    border-top: 2px dashed var(--accent-color);
}
.powerups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}
.powerup-item {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    border-radius: 20px;
    padding: 30px 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}
.powerup-item::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 100px; height: 100px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    filter: blur(20px);
}
.powerup-item:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,255,255,0.3), inset 0 0 20px rgba(0,255,255,0.1);
    background: rgba(255, 255, 255, 0.05);
}
.powerup-item:hover::before {
    opacity: 0.5;
}
.powerup-icon-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.powerup-item:hover .powerup-icon-wrapper {
    transform: scale(1.2) rotate(10deg);
}
.powerup-icon-wrapper img {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0px 10px 10px rgba(0,0,0,0.8));
    transition: filter 0.3s;
}
.powerup-item:hover .powerup-icon-wrapper img {
    filter: drop-shadow(0px 0px 15px var(--accent-color));
}
.powerup-icon-wrapper .dashicons {
    font-size: 60px;
    line-height: 130px;
    color: var(--secondary-color);
    width: auto;
    height: auto;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    transition: all 0.3s;
}
.powerup-item:hover .powerup-icon-wrapper .dashicons {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-color);
}
.powerup-item h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px #000;
    font-family: 'Bangers', cursive;
}
.resources-preview {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: rgba(0, 0, 0, 0.4);
    padding: 25px 40px;
    border-radius: 50px;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 0 20px rgba(0,0,0,1);
}
.resources-preview img {
    width: 60px;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.8));
    animation: floatX 3s ease-in-out infinite;
}

/* Colecionaveis */
.colecionaveis-section {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}
.cards-showcase {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.showcase-item {
    background: var(--glass-bg);
    color: var(--text-color);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    max-width: 400px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.showcase-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.8), 0 0 30px rgba(255,215,0,0.2);
}
.floating-img {
    height: 220px;
    margin-bottom: 30px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.8));
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(2deg); }
}

/* Social */
.social-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
    background-color: var(--bg-color);
}
.social-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(10, 10, 20, 0.8));
}
.social-section .container {
    position: relative;
    z-index: 1;
}
.social-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.social-card {
    background: var(--glass-bg);
    color: var(--text-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 450px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-wrapper:hover .social-card {
    background: var(--glass-bg);
    border-color: var(--primary-color);
}
.social-card img {
    height: 140px;
    margin-bottom: 30px;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.8));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-wrapper:hover .social-card img {
    transform: scale(1.2) translateY(-10px) rotate(-8deg);
    filter: drop-shadow(0 20px 20px rgba(156, 39, 176, 0.6));
}

/* Patch Notes Section */
.patch-notes-section {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
    border-top: 3px solid var(--accent-color);
}
.patch-notes-terminal {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
}
.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}
.terminal-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.terminal-header .dot.red { background: #ff5f56; }
.terminal-header .dot.yellow { background: #ffbd2e; }
.terminal-header .dot.green { background: #27c93f; }
.terminal-title {
    color: var(--text-color);
    margin-left: 20px;
    font-size: 0.9rem;
}
.terminal-body {
    padding: 30px;
    height: 400px;
    overflow-y: auto;
    color: var(--text-color);
}
.terminal-body::-webkit-scrollbar { width: 8px; }
.terminal-body::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.3); }
.terminal-body::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 4px; }

.terminal-body h3 {
    color: var(--secondary-color);
    font-family: 'Luckiest Guy', cursive;
    text-shadow: none;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-transform: uppercase;
}
.terminal-body h3:first-child {
    margin-top: 0;
}
.terminal-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}
.terminal-body li {
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.2s;
}
.terminal-body li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

/* Gameplay Screenshots Section (Carousel) */
.gameplay-screenshots {
    padding: 120px 0;
    background: var(--bg-color);
    position: relative;
    border-top: 3px dashed var(--secondary-color);
}
.carousel-container {
    overflow: hidden;
    position: relative;
    padding: 20px;
}
.screenshot-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    flex-wrap: nowrap;
    padding-bottom: 20px;
    /* Esconder scrollbar na grid */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.screenshot-grid::-webkit-scrollbar {
    display: none;
}
.screenshot-grid img {
    flex: 0 0 80%;
    max-width: 400px;
    scroll-snap-align: center;
    border: 4px solid var(--secondary-color);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), inset 0 0 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    object-fit: cover;
}
.screenshot-grid img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 30px var(--glow-color);
    border-color: var(--accent-color);
    z-index: 10;
}
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Footer */
.site-footer {
    background: var(--bg-color);
    padding: 60px 0 30px;
    border-top: 5px solid var(--primary-color);
    position: relative;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
    color: var(--text-color);
}
.site-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}
.footer-col {
    flex: 1;
    min-width: 250px;
    text-align: center;
    margin-bottom: 30px;
}
.footer-col h4 {
    color: #2f3542;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: none;
}
.about-col img {
    max-height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
    transition: filter 0.3s;
}
.about-col img:hover {
    filter: drop-shadow(0 0 15px var(--primary-color));
}
.about-col p {
    color: #2f3542;
    font-size: 1rem;
}
.links-col a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 15px;
    font-family: 'Luckiest Guy', cursive;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.links-col a:hover {
    color: var(--primary-color);
    text-shadow: none;
    transform: translateX(10px);
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-icons a {
    color: #ffffff;
    background: #2f3542;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
}
.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.copyright {
    color: var(--secondary-color);
    font-size: 1rem;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Apurado */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .text-content { margin-right: 0; margin-bottom: 50px; text-align: center; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-header h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); }
    .main-navigation ul { display: none; }
    .main-navigation ul.toggled { 
        display: flex; 
        flex-direction: column; 
        background: var(--glass-bg); 
        backdrop-filter: blur(10px);
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        padding: 30px 20px; 
        box-sizing: border-box; 
        border-bottom: 2px solid var(--primary-color);
    }
    
    .categories-grid, .powerups-grid, .social-grid, .cards-showcase {
        grid-template-columns: 1fr;
    }
    .modos-images { height: 250px; }
    .screenshot-grid img { flex: 0 0 90%; max-width: 100%; }
    .site-info { flex-direction: column; text-align: center; gap: 30px; }
    .footer-col { min-width: 100%; margin-bottom: 0; }
    .modos-section .content-wrapper { padding: 40px 20px; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .hero-logo { max-width: 90%; }
    .btn { font-size: 1rem; padding: 12px 25px; width: 100%; box-sizing: border-box; }
    .hero-actions { flex-direction: column; width: 100%; gap: 15px;}
    .text-content h2 { font-size: 2rem; }
}

@media (hover: none) {
    #magic-cursor, #particle-overlay { display: none; }
    .tilt-card { transform: none !important; transition: none !important; }
}