/* ============================================
   GRAND FANTASIA SOLARIS - FANTASY EPIC STYLE
   Estilo: MMORPG Premium / Celestial / Divino
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

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

:root {
    /* Paleta Dourada */
    --gold-light: #f5d078;
    --gold: #d4a853;
    --gold-dark: #b8860b;
    --gold-shadow: #8b6914;

    /* Paleta de Fundo */
    --parchment: #f5ede0;
    --parchment-dark: #e8dcc8;
    --ivory: #faf8f3;
    --cream: #fff9e6;

    /* Cores Celestiais */
    --sky-pink: #ffd6e0;
    --sky-orange: #ffd4a3;
    --sky-purple: #e6d4f0;
    --sky-blue: #d4e8f5;
    --sky-green: #d4f0e0;

    /* Texto */
    --text-dark: #4a3c2a;
    --text-medium: #6b5d4d;
    --text-light: #8b7d6b;

    /* Status */
    --success: #5cb85c;
    --error: #d9534f;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg,
        #fffdf7 0%,
        #fff9e6 25%,
        #fff3d4 50%,
        #ffe8b8 75%,
        #fff3d4 100%);
    min-height: 100vh;
    color: var(--text-dark);
    background-attachment: fixed;
}

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

/* ============================================
   ORNAMENTAL BORDERS & DECORATIONS
   ============================================ */
.ornament-border {
    position: relative;
    border: 3px solid var(--gold);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    padding: 3px;
}

.ornament-border::before,
.ornament-border::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4a853'%3E%3Cpath d='M12 2L15 8L22 9L17 14L18 21L12 18L6 21L7 14L2 9L9 8L12 2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.ornament-border::before {
    top: -10px;
    left: -10px;
}

.ornament-border::after {
    bottom: -10px;
    right: -10px;
}

/* ============================================
   NAVBAR - MODERN TRANSPARENT
   ============================================ */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar .logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(212, 168, 83, 0.3));
}

.navbar nav {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Menu Links - Minimal Modern */
.navbar nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px;
    color: var(--text-medium);
    background: transparent;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar nav a:hover {
    color: var(--gold-dark);
}

.navbar nav a:hover::after {
    width: 20px;
}

.navbar nav a.active {
    color: var(--gold-dark);
    font-weight: 600;
}

.navbar nav a.active::after {
    width: 20px;
}

/* CTA Buttons */
.navbar nav a.btn-register {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.25);
}

.navbar nav a.btn-register::after {
    display: none;
}

.navbar nav a.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.35);
}

.navbar nav a.btn-nav {
    color: var(--gold-dark);
    font-weight: 600;
    padding: 10px 20px;
}

.navbar nav a.btn-nav::after {
    display: none;
}

.navbar nav a.btn-nav:hover {
    background: rgba(212, 168, 83, 0.1);
}

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

/* ============================================
   HERO SECTION - MODERN CLEAN
   ============================================ */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    position: relative;
    padding-top: 90px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

/* Character Container */
.hero-character {
    position: relative;
    margin-bottom: 30px;
}

.hero-character img {
    max-height: 280px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(139, 105, 20, 0.2));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.hero h1 span {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Main CTA Button - Modern */
.hero .btn-play {
    display: inline-block;
    padding: 18px 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
}

.hero .btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.5);
}

.hero .btn-play:active {
    transform: translateY(-1px);
}

/* ============================================
   SLOGAN SECTION - MODERN
   ============================================ */
.slogan-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
    position: relative;
}

.slogan-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SECTIONS - GENERAL STYLING
   ============================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-title h2 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-family: 'Inter', sans-serif;
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* ============================================
   CLASSES SECTION - MODERN
   ============================================ */
.classes-section {
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.classes-carousel {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.class-slide {
    flex-shrink: 0;
    width: 260px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 10px 30px rgba(139, 105, 20, 0.1);
}

.class-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 168, 83, 0.2);
    border-color: var(--gold);
}

.class-slide img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(139, 105, 20, 0.15));
    transition: all 0.3s ease;
}

.class-slide:hover img {
    transform: scale(1.05);
}

.class-slide h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-top: 15px;
}

/* ============================================
   NEWS/UPDATES SECTION - MODERN
   ============================================ */
.news-section {
    background: transparent;
    padding: 80px 0;
}

/* News Tabs */
.news-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.news-tab {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 25px;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-tab:hover {
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold-dark);
}

.news-tab.active {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

/* News Cards Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.news-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 105, 20, 0.08);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 168, 83, 0.15);
    border-color: var(--gold);
}

.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 25px;
}

.news-card-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
    font-weight: 500;
}

.news-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card p {
    font-family: 'Inter', sans-serif;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-card-link:hover {
    color: var(--gold);
    gap: 10px;
}

.news-card-link::after {
    content: '→';
}

/* ============================================
   SERVER INFO SECTION - MODERN
   ============================================ */
.server-section {
    background: rgba(255, 255, 255, 0.5);
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.server-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 105, 20, 0.08);
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.15);
    border-color: var(--gold);
}

.server-card .value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.server-card .label {
    font-family: 'Inter', sans-serif;
    color: var(--text-medium);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.server-card.online .value {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Server Info Grid - Two Columns */
.server-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .server-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Coluna Sobre */
.server-about {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(139, 105, 20, 0.1);
}

.box-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.about-details {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-description {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.server-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-icon {
    font-size: 1.1rem;
}

/* Coluna Status */
.server-status {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(139, 105, 20, 0.1);
}

.server-status h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.channels-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.channel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    border-left: 4px solid #ccc;
    transition: all 0.3s ease;
}

.channel-item.online {
    border-left-color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
}

.channel-item.offline {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
    opacity: 0.7;
}

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

.channel-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.channel-status {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.channel-item.online .channel-status {
    color: #22c55e;
}

.channel-item.offline .channel-status {
    color: #ef4444;
}

.channel-players {
    text-align: right;
}

.players-count {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.players-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.server-stats {
    border-top: 1px solid rgba(212, 168, 83, 0.2);
    padding-top: 20px;
}

.server-stats h4 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 12px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FOOTER - MODERN CLEAN
   ============================================ */
.footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px 0 30px;
    border-top: 2px solid var(--gold);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-dark);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    font-family: 'Inter', sans-serif;
    color: var(--text-medium);
    line-height: 2;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--gold-dark);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 168, 83, 0.3);
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-dark);
}

/* Mascot */
.footer-mascot {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    opacity: 0.8;
}

/* ============================================
   BUTTONS - MODERN STYLE
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 168, 83, 0.4);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: #fff;
}

/* ============================================
   FORMS - MODERN STYLE
   ============================================ */
.card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(139, 105, 20, 0.1);
}

.card-center {
    max-width: 450px;
    margin: 120px auto 60px;
}

.card h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.15);
    background: #fff;
}

.form-group input::placeholder {
    color: var(--text-light);
}

.input-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Messages */
.message {
    padding: 15px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.message.success {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid #4ade80;
    color: #16a34a;
}

.message.error {
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid #f87171;
    color: #dc2626;
}

/* ============================================
   AUTH SECTION (Login/Register) - MODERN
   ============================================ */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.auth-character {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.auth-character img {
    max-height: 650px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(139, 105, 20, 0.3));
    animation: float 4s ease-in-out infinite;
}

.auth-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(139, 105, 20, 0.12);
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.auth-header h1 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    font-family: 'Inter', sans-serif;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 168, 83, 0.2);
}

.auth-footer p {
    font-family: 'Inter', sans-serif;
    color: var(--text-medium);
}

.auth-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.auth-features .feature {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.form-btn {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .navbar nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar nav a {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

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

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

    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero .btn-play {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

    .hero-character img {
        max-height: 300px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .slogan-section h2 {
        font-size: 1.8rem;
    }

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

    .news-tabs {
        flex-wrap: wrap;
    }

    .auth-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .auth-character {
        min-height: auto;
    }

    .auth-character img {
        max-height: 350px;
    }

    .auth-card {
        padding: 30px 25px;
        margin: 0 20px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.link {
    color: var(--gold-dark);
    font-weight: 600;
}

.link:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* ============================================
   DOWNLOAD PAGE - MODERN STYLE
   ============================================ */
.download-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.download-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.download-character img {
    max-height: 450px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(139, 105, 20, 0.2));
    animation: float 4s ease-in-out infinite;
}

.download-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.download-content h1 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
}

.download-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 14px;
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.info-item strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item span {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.download-buttons {
    margin-bottom: 20px;
}

.btn-download {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.download-alt {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    font-size: 0.9rem;
}

.download-alt a {
    color: var(--gold-dark);
    margin-left: 10px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.download-alt a:hover {
    color: var(--gold);
}

/* Requirements Section */
.requirements-section {
    background: rgba(255, 255, 255, 0.5);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.req-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
}

.req-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.15);
}

.req-card.recommended {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 208, 120, 0.1) 100%);
}

.req-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.req-header {
    text-align: center;
    margin-bottom: 25px;
}

.req-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.req-list {
    list-style: none;
}

.req-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
    font-family: 'Inter', sans-serif;
}

.req-list li:last-child {
    border-bottom: none;
}

.req-list li span {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.req-list li strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Installation Section */
.install-section {
    background: transparent;
}

.install-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(212, 168, 83, 0.2);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.15);
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.step-content p {
    font-family: 'Inter', sans-serif;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.install-character img {
    max-height: 400px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(139, 105, 20, 0.2));
    animation: float 4s ease-in-out infinite;
}

/* Download Responsive */
@media (max-width: 768px) {
    .download-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-character {
        order: -1;
    }

    .download-character img {
        max-height: 280px;
    }

    .download-content h1 {
        font-size: 2rem;
    }

    .download-info {
        justify-content: center;
    }

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

    .install-layout {
        grid-template-columns: 1fr;
    }

    .install-character {
        display: none;
    }

    .step {
        padding: 20px;
    }
}
