/* ============================================
   XADREZINHO — STYLE.CSS
   Inspired by Dota 2 / Valve aesthetic
   ============================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --clr-bg: #08090d;
    --clr-dark: #0d0f18;
    --clr-surface: #111523;
    --clr-border: #2a2d45;

    --clr-gold: #c9a84c;
    --clr-gold-light: #f0d080;
    --clr-green: #3fcf72;
    --clr-purple: #9b59e8;
    --clr-red: #e84040;

    --clr-text: #d5d8e8;
    --clr-muted: #7a7e99;

    --font-title: 'Cinzel', serif;
    --font-body: 'Rajdhani', sans-serif;

    --nav-h: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: linear-gradient(180deg, rgba(8, 9, 13, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--clr-green));
}

.nav-logo-text {
    font-family: var(--font-title);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: var(--clr-gold);
    text-shadow: 0 0 18px rgba(201, 168, 76, 0.6);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-muted);
    transition: color 0.25s, text-shadow 0.25s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-gold);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-gold-light);
    text-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

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

.btn-nav-login {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 9px 24px;
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
    background: transparent;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-nav-login:hover {
    background: var(--clr-gold);
    color: var(--clr-bg);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background layers */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-bg-base {
    background-image: url('../spritesxadrez/sprites/background03.png');
    filter: brightness(0.35) saturate(0.8);
}

.hero-bg-overlay {
    background: linear-gradient(105deg,
            rgba(8, 9, 13, 0.92) 0%,
            rgba(13, 15, 24, 0.70) 45%,
            rgba(8, 9, 13, 0.15) 100%);
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    background: var(--clr-gold);
    animation: particleRise linear infinite;
    pointer-events: none;
}

@keyframes particleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-110vh) scale(0.5);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 0 0 0 80px;
    margin-top: var(--nav-h);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 16px;
    opacity: 0.85;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.92;
    color: #fff;
    text-shadow:
        0 0 60px rgba(201, 168, 76, 0.3),
        0 4px 30px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

.hero-title-accent {
    color: var(--clr-gold);
    text-shadow:
        0 0 40px rgba(201, 168, 76, 0.7),
        0 0 80px rgba(201, 168, 76, 0.3);
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--clr-muted);
    margin: 24px 0 36px;
    max-width: 480px;
    line-height: 1.7;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-play {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px 40px;
    background: linear-gradient(135deg, #b8830a 0%, #e6b23a 50%, #b8830a 100%);
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    transition: filter 0.3s, transform 0.2s;
    cursor: pointer;
}

.btn-play:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
}

.btn-play:active {
    transform: translateY(0);
}

.btn-play-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-title);
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #0d0f18;
}

.btn-play-shine {
    position: absolute;
    top: -60%;
    left: -80%;
    width: 60%;
    height: 220%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-20deg);
    animation: btnShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnShine {
    0% {
        left: -80%;
    }

    50% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.btn-play-large {
    padding: 18px 56px;
}

.btn-learn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-muted);
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 2px;
    transition: color 0.25s, border-color 0.25s;
}

.btn-learn:hover {
    color: var(--clr-text);
    border-color: var(--clr-text);
}

/* Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--clr-gold-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--clr-border);
}

/* Hero Characters */
.hero-characters {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.char-glow {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse,
            rgba(155, 89, 232, 0.35) 0%,
            transparent 70%);
    filter: blur(30px);
}

.hero-char {
    position: absolute;
    bottom: 0;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(155, 89, 232, 0.5));
    animation: charFloat 4s ease-in-out infinite;
}

.hero-char-main {
    width: clamp(280px, 28vw, 420px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    filter: drop-shadow(0 0 30px rgba(155, 89, 232, 0.7)) drop-shadow(0 0 60px rgba(155, 89, 232, 0.3));
    animation: charFloat 4s ease-in-out infinite;
}

.hero-char-left {
    width: clamp(120px, 12vw, 180px);
    left: 8%;
    z-index: 2;
    animation: charFloat 5s ease-in-out 0.5s infinite;
    filter: drop-shadow(0 0 14px rgba(63, 207, 114, 0.6));
}

.hero-char-right {
    width: clamp(120px, 12vw, 180px);
    right: 12%;
    z-index: 2;
    animation: charFloat 4.5s ease-in-out 1s infinite;
    filter: drop-shadow(0 0 14px rgba(63, 207, 114, 0.6));
}

.hero-char-front {
    width: clamp(80px, 8vw, 120px);
    left: 46%;
    transform: translateX(-50%);
    z-index: 4;
    bottom: -10px;
    animation: charFloat 3.5s ease-in-out 1.5s infinite;
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.8));
}

@keyframes charFloat {

    0%,
    100% {
        transform: translateY(0) translateX(var(--tx, 0));
    }

    50% {
        transform: translateY(-14px) translateX(var(--tx, 0));
    }
}

.hero-char-main {
    --tx: -50%;
}

.hero-char-front {
    --tx: -50%;
}

/* Bottom Fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(transparent, var(--clr-bg));
    z-index: 5;
}


/* ============================================
   FEATURES (CHOOSE YOUR PIECE)
   ============================================ */
.features {
    position: relative;
    padding: 100px 80px 80px;
    background: var(--clr-dark);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-title {
    font-family: var(--font-title);
    font-size: 2.4rem;
    color: var(--clr-gold-light);
    letter-spacing: 0.15em;
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

.features-subtitle {
    font-size: 1rem;
    color: var(--clr-muted);
    margin-top: 12px;
    letter-spacing: 0.06em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--clr-gold);
    transform: translateY(-6px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-img-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.feature-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
    transition: transform 0.4s, filter 0.4s;
    filter: drop-shadow(0 0 8px rgba(63, 207, 114, 0.4));
}

.feature-card:hover .feature-img {
    transform: scale(1.12) translateY(-4px);
    filter: drop-shadow(0 0 18px rgba(63, 207, 114, 0.8));
}

.feature-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    filter: blur(18px);
}

.green-glow {
    background: radial-gradient(ellipse, rgba(63, 207, 114, 0.5), transparent 70%);
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-name {
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.18em;
    color: var(--clr-gold-light);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.88rem;
    color: var(--clr-muted);
    line-height: 1.6;
}


/* ============================================
   BANNER CTA
   ============================================ */
.banner-cta {
    position: relative;
    padding: 100px 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('../spritesxadrez/sprites/background05.png');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.25) saturate(0.6);
}

.banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 9, 13, 0.7), rgba(8, 9, 13, 0.2), rgba(8, 9, 13, 0.7));
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: var(--clr-muted);
    margin-bottom: 40px;
}

.banner-char {
    position: absolute;
    right: 8%;
    bottom: 0;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(155, 89, 232, 0.5));
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #05060a;
    border-top: 1px solid var(--clr-border);
    padding: 40px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.7;
    filter: drop-shadow(0 0 6px var(--clr-green));
}

.footer-logo-text {
    font-family: var(--font-title);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--clr-muted);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--clr-muted);
    opacity: 0.6;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-characters {
        opacity: 0.35;
    }

    .features {
        padding: 60px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .banner-cta {
        padding: 60px 24px;
    }

    .banner-char {
        opacity: 0.15;
    }

    .footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .info-block,
    .info-block--reverse {
        flex-direction: column !important;
        gap: 40px;
    }

    .info-section__inner {
        padding: 60px 24px;
    }

    .evo-pieces {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .passiva-cards {
        flex-direction: column;
        align-items: center;
    }

    .passiva-card--featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ============================================
   INFO SECTIONS (generic layout)
   ============================================ */
.info-section {
    position: relative;
    background: var(--clr-bg);
    overflow: hidden;
}

.info-section--alt {
    background: var(--clr-dark);
}

.info-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
}

.info-section__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 80px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 80px;
}

.info-block--reverse {
    flex-direction: row-reverse;
}

/* Left/Right columns */
.info-text,
.info-visual {
    flex: 1;
}

.info-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 280px;
}

/* Tags */
.info-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
    margin-bottom: 18px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.info-tag.purple-tag {
    border-color: var(--clr-purple);
    color: var(--clr-purple);
}

.info-tag.green-tag {
    border-color: var(--clr-green);
    color: var(--clr-green);
}

.info-tag.red-tag {
    border-color: var(--clr-red);
    color: var(--clr-red);
}

/* Title */
.info-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.accent-gold {
    color: var(--clr-gold);
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
}

.accent-purple {
    color: var(--clr-purple);
    text-shadow: 0 0 30px rgba(155, 89, 232, 0.5);
}

.accent-green {
    color: var(--clr-green);
    text-shadow: 0 0 30px rgba(63, 207, 114, 0.5);
}

.accent-red {
    color: var(--clr-red);
    text-shadow: 0 0 30px rgba(232, 64, 64, 0.5);
}

/* Desc */
.info-desc {
    font-size: 1rem;
    color: var(--clr-muted);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 28px;
}

.info-desc.center-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* List */
.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.list-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.list-dot.gold {
    background: var(--clr-gold);
    box-shadow: 0 0 8px var(--clr-gold);
}

.list-dot.purple {
    background: var(--clr-purple);
    box-shadow: 0 0 8px var(--clr-purple);
}

.list-dot.green {
    background: var(--clr-green);
    box-shadow: 0 0 8px var(--clr-green);
}

/* Icon wrapper */
.info-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.info-icon-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    animation: charFloat 4s ease-in-out infinite;
}

.info-icon-img.big-icon {
    width: 160px;
    height: 160px;
}

/* Glow pulses */
.gold-pulse::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.3), transparent 70%);
    animation: glowPulse 2.5s ease-in-out infinite;
}

.purple-pulse::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(155, 89, 232, 0.35), transparent 70%);
    animation: glowPulse 2.5s ease-in-out 0.5s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.25);
        opacity: 1;
    }
}

/* Stat badge */
.info-stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 14px 28px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.info-stat-num {
    font-family: var(--font-title);
    font-size: 2.4rem;
    color: var(--clr-gold-light);
    line-height: 1;
}

.info-stat-lbl {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-top: 4px;
}


/* ============================================
   SPELL CARDS (Loja de Feitiços)
   ============================================ */
.spell-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.spell-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(155, 89, 232, 0.06);
    border: 1px solid rgba(155, 89, 232, 0.25);
    transition: border-color 0.3s, background 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.spell-card:hover {
    border-color: var(--clr-purple);
    background: rgba(155, 89, 232, 0.12);
}

.spell-card--locked {
    opacity: 0.45;
    pointer-events: none;
}

.spell-icon {
    font-size: 1.4rem;
    width: 40px;
    text-align: center;
    color: var(--clr-purple);
    filter: drop-shadow(0 0 6px var(--clr-purple));
}

.spell-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.spell-name {
    font-family: var(--font-title);
    font-size: 0.9rem;
    color: var(--clr-text);
    letter-spacing: 0.08em;
}

.spell-mystery {
    font-size: 0.78rem;
    color: var(--clr-muted);
    font-style: italic;
}

.spell-cost {
    font-family: var(--font-title);
    font-size: 0.85rem;
    color: var(--clr-gold);
    white-space: nowrap;
}

.locked-badge {
    font-size: 1rem;
}

/* Floating cards in visual */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-card {
    position: absolute;
    width: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(155, 89, 232, 0.6));
}

.float-card--a {
    top: 8%;
    right: 12%;
    animation: charFloat 3.8s ease-in-out 0.3s infinite;
    rotate: 12deg;
}

.float-card--b {
    bottom: 10%;
    left: 10%;
    animation: charFloat 4.5s ease-in-out 1s infinite;
    rotate: -8deg;
}


/* ============================================
   EVOLUTION SECTION
   ============================================ */
.evo-visual {
    min-height: 320px;
}

.evo-pieces {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.evo-piece {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.evo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(63, 207, 114, 0.6));
    animation: charFloat 4s ease-in-out infinite;
    transition: filter 0.3s;
}

.evo-piece:hover .evo-img {
    filter: drop-shadow(0 0 24px rgba(63, 207, 114, 1));
}

.evo-badge {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-green);
    background: rgba(63, 207, 114, 0.1);
    border: 1px solid rgba(63, 207, 114, 0.3);
    padding: 3px 8px;
    white-space: nowrap;
}

.evo-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(63, 207, 114, 0.4);
    animation: ringPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -60%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -60%) scale(1.3);
        opacity: 0;
    }
}

/* Evo list */
.evo-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.evo-entry {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(63, 207, 114, 0.04);
    border-left: 2px solid var(--clr-green);
    transition: background 0.25s;
}

.evo-entry:hover {
    background: rgba(63, 207, 114, 0.09);
}

.evo-entry-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(63, 207, 114, 0.5));
}

.evo-entry-bishop {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-green);
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(63, 207, 114, 0.5));
}

.evo-entry>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.evo-entry-name {
    font-family: var(--font-title);
    font-size: 0.9rem;
    color: var(--clr-green);
    letter-spacing: 0.08em;
}

.evo-entry-desc {
    font-size: 0.85rem;
    color: var(--clr-muted);
    line-height: 1.5;
}

.evo-entry-desc strong {
    color: var(--clr-text);
}


/* ============================================
   PASSIVA CARDS
   ============================================ */
.passiva-section .info-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.passiva-header {
    text-align: center;
    margin-bottom: 56px;
}

.passiva-cards {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.passiva-card {
    position: relative;
    width: 220px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    cursor: pointer;
}

.passiva-card:hover {
    transform: translateY(-10px) scale(1.03);
}

/* Featured card (center) is elevated */
.passiva-card--featured {
    transform: scale(1.08);
    z-index: 2;
    border-color: var(--clr-purple);
    box-shadow: 0 0 30px rgba(155, 89, 232, 0.3), 0 0 60px rgba(155, 89, 232, 0.1);
}

.passiva-card--featured:hover {
    transform: scale(1.08) translateY(-10px);
}

/* Color variants */
.passiva-card--gold {
    border-color: rgba(201, 168, 76, 0.35);
}

.passiva-card--gold:hover {
    border-color: var(--clr-gold);
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.3);
}

.passiva-card--purple {
    border-color: var(--clr-purple);
}

.passiva-card--purple:hover {
    box-shadow: 0 0 32px rgba(155, 89, 232, 0.5);
}

.passiva-card--green {
    border-color: rgba(63, 207, 114, 0.35);
}

.passiva-card--green:hover {
    border-color: var(--clr-green);
    box-shadow: 0 0 24px rgba(63, 207, 114, 0.3);
}

/* Shine animation on cards */
.passiva-card__shine {
    position: absolute;
    top: -100%;
    left: -60%;
    width: 50%;
    height: 300%;
    background: rgba(255, 255, 255, 0.06);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: cardShine 4s ease-in-out infinite;
}

@keyframes cardShine {
    0% {
        left: -60%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    60% {
        left: 130%;
        opacity: 0;
    }

    100% {
        left: 130%;
    }
}

.passiva-card--featured .passiva-card__shine {
    animation-delay: 0.5s;
}

.passiva-card--green .passiva-card__shine {
    animation-delay: 1s;
}

/* Card header */
.passiva-card__header {
    display: flex;
    justify-content: center;
    padding: 18px 0 4px;
    font-size: 1.6rem;
}

/* Card image */
.passiva-card__img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    padding: 10px 20px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s;
}

.passiva-card:hover .passiva-card__img {
    transform: scale(1.06) translateY(-4px);
}

/* Card body */
.passiva-card__body {
    padding: 14px 18px 8px;
    border-top: 1px solid var(--clr-border);
}

.passiva-card__name {
    font-family: var(--font-title);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--clr-text);
    margin-bottom: 6px;
}

.passiva-card__lore {
    font-size: 0.78rem;
    color: var(--clr-muted);
    font-style: italic;
    line-height: 1.5;
}

/* Card footer */
.passiva-card__footer {
    padding: 10px 18px 16px;
    display: flex;
    justify-content: center;
}

.passiva-locked {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-muted);
    border-top: 1px solid var(--clr-border);
    padding-top: 8px;
    width: 100%;
    text-align: center;
}