/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.7) 0%, rgba(10, 14, 26, 0.9) 100%);
    backdrop-filter: blur(2px);
}

.hero-content {
    max-width: 900px;
    padding: 0 40px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* Estilo do título do jogo - Modern */
.game-title {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 24px 0;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

.game-title .title-part {
    display: block;
    font-size: 3.5rem;
    color: var(--text-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
    font-weight: 600;
}

.game-title .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4.5rem;
    text-shadow: none;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.5));
}

/* Efeito de brilho pulsante para o título - Modern */
@keyframes titleGlow {
    from {
        filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.4));
    }
    to {
        filter: drop-shadow(0 6px 20px rgba(201, 169, 97, 0.7));
    }
}

/* Efeito de brilho ao passar o mouse */
.game-title:hover .highlight {
    animation: pulse 1s ease-in-out infinite alternate;
}

@keyframes pulse {
    from {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 215, 0, 1),
                   0 0 60px rgba(255, 215, 0, 0.8);
    }
}

/* Animação de brilho */
@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)) brightness(1);
    }
    to {
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8)) brightness(1.1);
    }
}

/* Animação de piscar (fade in/out) */
@keyframes fadePulse {
    0% {
        opacity: 0.2;
    }
    15% {
        opacity: 1;
    }
    30% {
        opacity: 0.2;
    }
    45% {
        opacity: 1;
    }
    60% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.2;
    }
}

/* Efeito de hover no logo */
.logo-animated:hover {
    animation: none;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)) brightness(1.15);
    transform: scale(1.02);
}

/* Estilo do subtítulo - Modern */
.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeIn 2s ease-out;
}

/* Ajustes para telas menores */
@media (max-width: 992px) {
    .game-title .title-part {
        font-size: 2.8rem;
    }
    
    .game-title .highlight {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .game-title .title-part {
        font-size: 2.2rem;
    }
    
    .game-title .highlight {
        font-size: 2.8rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .game-title .title-part {
        font-size: 1.8rem;
    }
    
    .game-title .highlight {
        font-size: 2.2rem;
    }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #ff5722;
    color: white;
    border: 2px solid #ff5722;
}

.btn-primary:hover {
    background: transparent;
    color: #ff5722;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Global Styles - Modern Dark Theme */
:root {
    --primary-color: #c9a961;
    --primary-light: #d4b876;
    --secondary-color: #2d3748;
    --dark-bg: #0a0e1a;
    --dark-card: #1a1f2e;
    --dark-overlay: rgba(10, 14, 26, 0.85);
    --text-color: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: rgba(201, 169, 97, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

/* Navbar - Modern Minimal */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.8) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(10, 14, 26, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(201, 169, 97, 0.3);
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 8px rgba(201, 169, 97, 0.3));
    transition: var(--transition);
}

.logo img:hover {
    filter: drop-shadow(0 0 12px rgba(201, 169, 97, 0.6));
    transform: scale(1.02);
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(201, 169, 97, 0.1);
}

.nav-links a.active {
    color: var(--primary-color);
    background: rgba(201, 169, 97, 0.15);
}

.language-selector select {
    background: rgba(26, 31, 46, 0.6);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.language-selector select:hover {
    border-color: var(--primary-color);
    background: rgba(26, 31, 46, 0.8);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 0 20px;
    margin-top: -90px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeIn 1s ease 0.6s;
    animation-fill-mode: both;
    position: relative;
    z-index: 2;
}

/* Transformations Section - Modern */
.transformations {
    padding: 100px 0;
    background: linear-gradient(180deg, #0d1117 0%, var(--dark-bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.transformations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/transformations/bg-pattern.png') repeat;
    opacity: 0.1;
    z-index: 0;
}

.transformations .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #a8a8ff;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.transformation-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transformation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.transformation-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.transformation-card h3 {
    padding: 15px 20px 5px;
    margin: 0;
    font-size: 1.4rem;
    color: white;
}

.transformation-type {
    display: inline-block;
    padding: 3px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin: 0 20px 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    background: #1a1a2e;
    margin: 50px auto;
    max-width: 900px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-left, .modal-right {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.modal-left {
    background: #16213e;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#modal-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    max-height: 350px;
    object-fit: cover;
}

.transformation-stats {
    width: 100%;
    margin-top: 20px;
}

.stat {
    margin-bottom: 15px;
}

.stat-name {
    display: block;
    margin-bottom: 5px;
    color: #a8a8ff;
    font-size: 0.9rem;
}

.stat-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 1s ease;
}

.modal-right h2 {
    color: white;
    margin: 0 0 10px;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#modal-type {
    color: var(--primary-color);
    margin: 0 0 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

#modal-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.abilities h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.abilities h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.abilities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.abilities li {
    padding: 8px 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.abilities li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Features Section - Modern */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d1117 100%);
    position: relative;
}

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

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.feature-card {
    background: rgba(26, 31, 46, 0.6);
    padding: 45px 35px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Media Showcase & Screenshot Gallery - Modern */
.media-showcase {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.media-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.media-showcase h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.screenshot-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.screenshot-gallery img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    max-height: 300px;
    width: auto;
    border: 1px solid var(--border-color);
}

.screenshot-gallery img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    cursor: pointer;
}


/* Discord CTA - Modern */
.discord-cta {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(58, 69, 163, 0.15) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.discord-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.discord-content i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.discord-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.discord-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-discord {
    display: inline-block;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    padding: 16px 42px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Footer - Modern */
footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #000000 100%);
    color: var(--text-color);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links h3,
.social-links h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.social-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 90px);
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features h2,
    .media-showcase h2,
    .discord-content h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 30px 20px;
    }
}

/* Transformations Section */
.transformations {
    padding: 80px 0;
    background-color: #0f0f0f;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Estilo do card de combate */
.combat-feature {
    background: rgba(26, 31, 46, 0.6);
    padding: 45px 35px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.combat-feature /* Estilo base para ambos os botões */
.btn-combat-details,
#showTransformationsBtn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dark-bg);
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    margin: 15px auto 0;
}

/* Efeito de hover para ambos os botões */
.btn-combat-details:hover,
#showTransformationsBtn:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Estilo para o ícone de ambos os botões */
.btn-combat-details i,
#showTransformationsBtn i {
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

/* Rotação do ícone quando o botão está ativo */
.btn-combat-details.collapsed i,
#showTransformationsBtn.collapsed i {
    transform: rotate(-180deg);
}

.combat-feature .btn-combat-details:hover {
    background: linear-gradient(135deg, #ffec80 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.combat-feature .btn-combat-details i {
    margin-left: 10px;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.combat-feature .combat-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    padding: 0 15px;
}

.combat-feature .combat-details.visible {
    max-height: 1000px;
    opacity: 1;
    margin-top: 20px;
    padding: 15px;
    background: rgba(10, 10, 10, 0.5);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    margin: 15px -5px 0;
}

.combat-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 18px;
    background: rgba(26, 31, 46, 0.4);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.combat-feature-item:last-child {
    margin-bottom: 10px;
}

.combat-feature-item:hover {
    transform: translateX(6px);
    background: rgba(26, 31, 46, 0.6);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.3);
}

.combat-feature-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 24px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(201, 169, 97, 0.3));
}

.combat-feature-item h4 {
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.combat-feature-item p {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Estilo do card de transformações */
.feature-card.transformation-feature {
    position: relative;
    overflow: visible;
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card.transformation-feature .show-transformations-btn-container {
    margin: 20px 0;
}

.feature-card.transformation-feature .transformations-container {
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin: 0 -20px;
    padding: 0 20px;
}

.feature-card.transformation-feature .transformations-container.visible {
    max-height: 5000px;
    padding: 0 20px 20px;
}

.feature-card.transformation-feature .transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.feature-card.transformation-feature .transformation-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.feature-card.transformation-feature .transformation-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.feature-card.transformation-feature .transformation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card.transformation-feature h3 {
    font-size: 1rem;
    margin: 5px 0;
}

.feature-card.transformation-feature .transformation-type {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Estilo do botão de mostrar transformações */
.show-transformations-btn-container {
    margin: 30px 0 25px;
    text-align: center;
}


/* Animação de abertura do container */
.transformations-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-top: 0;
    opacity: 0;
}

.transformations-container.visible {
    max-height: 5000px; /* Ajuste conforme necessário */
    opacity: 1;
    transition: max-height 0.8s ease-in, opacity 0.5s ease 0.2s;
}

.transformations .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.transformations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.transformation-card {
    background: rgba(26, 31, 46, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.transformation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(201, 169, 97, 0.3);
    border-color: var(--primary-color);
}

.transformation-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transformation-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    background-color: #1a1a1a;
}

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

.transformation-card h3 {
    padding: 15px;
    margin: 0;
    font-size: 1.3rem;
    color: white;
}

.transformation-type {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0 15px 15px;
}

/* Modal Styles */
#transformation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

#transformation-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background: var(--dark-card);
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
    margin: 20px;
    backdrop-filter: blur(20px);
}

@keyframes modalFadeIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.close-modal:hover {
    color: #ffd700;
}

.modal-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.modal-left {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.modal-right {
    flex: 2;
    min-width: 300px;
    padding: 30px;
    color: #fff;
}

.modal-right h2 {
    color: #ffd700;
    margin-top: 0;
    font-size: 2rem;
    margin-bottom: 5px;
}

.modal-right h3 {
    color: #aaa;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 1.2rem;
}

.modal-right p {
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ddd;
}

.abilities h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

#abilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

#abilities-list li {
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
    color: #ffd700;
}

.transformation-stats {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}

.stat {
    margin-bottom: 15px;
}

.stat-name {
    display: block;
    margin-bottom: 5px;
    color: #ddd;
    font-size: 0.9rem;
}

.stat-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    border-radius: 5px;
    transition: width 1s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }
    
    .modal-left, .modal-right {
        width: 100%;
        padding: 15px;
    }
    
    #abilities-list {
        grid-template-columns: 1fr;
    }
}

/* Abilities */
.abilities {
    margin-top: 30px;
}

.abilities h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

#abilities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

#abilities-list li {
    background: rgba(255, 215, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    align-items: center;
}

#abilities-list li:before {
    content: '•';
    color: #ffd700;
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Responsive */
@media (min-width: 992px) {
    .modal-body {
        flex-direction: row;
    }
    
    .modal-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .modal-right {
        flex: 1.5;
        overflow-y: auto;
        max-height: 80vh;
    }
}

@media (max-width: 991px) {
    .modal-left {
        padding: 20px;
    }
    
    .modal-right {
        padding: 20px;
    }
    
    .modal-content {
        width: 95%;
    }
}

@media (max-width: 576px) {
    .transformations h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .modal-right h2 {
        font-size: 1.5rem;
    }
    
    .modal-right h3 {
        font-size: 1rem;
    }
    
    #abilities-list {
        grid-template-columns: 1fr;
    }
}
