/* ============================================
   SPLASH PAGE ANIMATIONS
   Shared animations for epic landing page
   ============================================ */

/* Floating animation for hero title */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Particle floating animation */
@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Glowing pulse effect for CTA buttons */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3),
                    0 0 20px rgba(255, 215, 0, 0.2),
                    0 0 30px rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                    0 0 40px rgba(255, 215, 0, 0.4),
                    0 0 60px rgba(255, 215, 0, 0.2);
    }
}

/* Fade in from bottom */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in from top */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Shimmer effect for text */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Gradient background animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Rotating animation for particles */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Pulsing scale animation */
@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Border glow animation */
@keyframes border-glow {
    0%, 100% {
        border-color: rgba(255, 215, 0, 0.3);
    }
    50% {
        border-color: rgba(255, 215, 0, 0.8);
    }
}

/* Bounce animation for scroll indicator */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Slow rotation for decorative elements */
@keyframes slow-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   UTILITY ANIMATION CLASSES
   ============================================ */

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeInDown {
    animation: fadeInDown 0.6s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.4s ease-out forwards;
}

.animate-shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 215, 0, 0) 0%,
        rgba(255, 215, 0, 0.3) 50%,
        rgba(255, 215, 0, 0) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Animation delays for staggered effects */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

/* ============================================
   SECTION HEADERS (Shared)
   ============================================ */

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #64748b;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    width: 100%;
    text-align: center;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* ============================================
   SPLASH CONTAINER
   ============================================ */

.splash-container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0f1e 0%, #0f1419 50%, #0a0f1e 100%);
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 50%, #0a0f1e 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/splash/hero-bg-1080p.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -10px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float linear infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    background: rgba(10, 15, 30, 0.55);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #ffd700 0%, #daa520 50%, #ffd700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    animation: gradient-shift 5s ease infinite;
}

.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: #daa520;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

.hero-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    color: #94a3b8;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
    max-width: 800px;
}

.hero-cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #0f172a;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.hero-btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-btn .btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: #ffd700;
}

.scroll-indicator .scroll-icon {
    width: 32px;
    height: 32px;
    animation: bounce 2s infinite;
}

/* ============================================
   FEATURES SECTION STYLES
   ============================================ */

.features-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0f1e 0%, #0f1419 100%);
}

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

.features-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 4rem;
}

.features-section .section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.features-section .section-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: inherit;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.combat { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 0 20px rgba(239, 68, 68, 0.4); }
.feature-icon.classes { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }
.feature-icon.adventures { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); }
.feature-icon.multiplayer { background: linear-gradient(135deg, #6366f1, #4f46e5); box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
.feature-icon.equipment { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 0 20px rgba(245, 158, 11, 0.4); }
.feature-icon.community { background: linear-gradient(135deg, #ec4899, #db2777); box-shadow: 0 0 20px rgba(236, 72, 153, 0.4); }

.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #ffd700;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

/* Learn More link styling */
.learn-more {
    font-family: 'Cinzel', serif;
    font-size: 0.875rem;
    color: #ffd700;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.feature-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover .learn-more {
    gap: 0.75rem;
}

/* ============================================
   CLASS SHOWCASE SECTION
   ============================================ */

.class-showcase-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #1a1f2e 0%, #0f1419 100%);
}

.class-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

.class-showcase-section .class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.class-showcase-section .class-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.class-showcase-section .class-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.class-showcase-section .class-card.warrior:hover { border-color: #ef4444; box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4); }
.class-showcase-section .class-card.wizard:hover { border-color: #3b82f6; box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4); }
.class-showcase-section .class-card.ranger:hover { border-color: #22c55e; box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4); }
.class-showcase-section .class-card.rogue:hover { border-color: #6366f1; box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4); }
.class-showcase-section .class-card.paladin:hover { border-color: #f59e0b; box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4); }
.class-showcase-section .class-card.bard:hover { border-color: #ec4899; box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4); }
.class-showcase-section .class-card.cleric:hover { border-color: #10b981; box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4); }
.class-showcase-section .class-card.monk:hover { border-color: #8b5cf6; box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4); }
.class-showcase-section .class-card.barbarian:hover { border-color: #dc2626; box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4); }

.class-showcase-section .class-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.class-showcase-section .class-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
    transition: transform 0.3s ease;
}

.class-showcase-section .class-card:hover .class-image {
    transform: scale(1.1);
}

.class-showcase-section .class-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 15, 30, 0.8) 100%);
    transition: opacity 0.3s ease;
}

.class-showcase-section .class-card:hover .class-overlay {
    opacity: 0.7;
}

.class-showcase-section .class-name {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #ffd700;
    margin: 1rem 0 0.5rem 0;
    padding: 0 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.class-showcase-section .class-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0 0 1rem 0;
    padding: 0 1.5rem;
    line-height: 1.4;
    min-height: 2.5rem;
}

.class-showcase-section .class-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    margin-top: auto;
}

.class-showcase-section .class-card .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.class-showcase-section .class-card .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.class-showcase-section .class-card .stat-value {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.class-showcase-section .class-card.warrior .stat-value { color: #fca5a5; }
.class-showcase-section .class-card.wizard .stat-value { color: #93c5fd; }
.class-showcase-section .class-card.ranger .stat-value { color: #86efac; }
.class-showcase-section .class-card.rogue .stat-value { color: #a5b4fc; }
.class-showcase-section .class-card.paladin .stat-value { color: #fcd34d; }
.class-showcase-section .class-card.bard .stat-value { color: #f9a8d4; }
.class-showcase-section .class-card.cleric .stat-value { color: #6ee7b7; }
.class-showcase-section .class-card.monk .stat-value { color: #c4b5fd; }
.class-showcase-section .class-card.barbarian .stat-value { color: #fca5a5; }

.class-showcase-section .premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #0f172a;
    padding: 0.4rem 0.8rem;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* ============================================
   CALL TO ACTION SECTION
   ============================================ */

.cta-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 50%, #0a0f1e 100%);
    overflow: hidden;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffd700 0%, #daa520 50%, #ffd700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1.5rem 0;
    animation: gradient-shift 5s ease infinite;
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd700, #daa520);
    color: #0f172a;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.cta-secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-secondary-button:hover {
    border-color: rgba(255, 215, 0, 0.8);
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-3px);
}

.feature-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
}

.badge-icon {
    color: #22c55e !important;
    font-size: 1.25rem !important;
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent 70%);
    animation: slow-rotate 20s linear infinite;
}

.decoration-1 { width: 400px; height: 400px; top: -200px; left: -200px; }
.decoration-2 { width: 600px; height: 600px; bottom: -300px; right: -300px; animation-direction: reverse; }
.decoration-3 { width: 300px; height: 300px; top: 50%; right: -150px; transform: translateY(-50%); }

@keyframes slow-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   SPLASH RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section,
    .class-showcase-section,
    .cta-section,
    .guides-section {
        padding: 3.5rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
        align-items: center;
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        text-align: center;
        width: 100%;
    }

    .section-description {
        font-size: 0.95rem;
        padding: 0 0.25rem;
        text-align: center;
        width: 100%;
    }

    .features-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.25rem;
        display: grid;
        grid-template-columns: 52px 1fr;
        grid-template-areas:
            "icon title"
            "desc desc"
            "more more";
        gap: 0.6rem 1rem;
        text-align: left;
    }

    .feature-card .feature-icon {
        grid-area: icon;
        width: 52px;
        height: 52px;
        margin: 0;
        align-self: center;
    }

    .feature-card .feature-icon .mud-icon-root {
        font-size: 1.5rem !important;
    }

    .feature-card .feature-title {
        grid-area: title;
        font-size: 1rem;
        text-align: left;
        align-self: center;
        margin: 0;
    }

    .feature-card .feature-description {
        grid-area: desc;
        font-size: 0.87rem;
        text-align: left;
        margin: 0;
    }

    .feature-card .learn-more {
        grid-area: more;
        text-align: left;
        justify-content: flex-start;
    }

    .guide-card {
        padding: 1.5rem;
    }

    .guide-icon {
        width: 60px;
        height: 60px;
    }

    .guide-title {
        font-size: 1.25rem;
    }

    .guide-description {
        font-size: 0.9rem;
    }

    .class-showcase-section .class-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .class-showcase-section .class-card {
        padding: 1rem;
        padding-bottom: 2.5rem;
    }

    .class-showcase-section .class-image-container {
        width: 100%;
        height: 175px;
    }

    .class-showcase-section .class-name {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .class-showcase-section .class-description {
        font-size: 0.75rem;
        min-height: auto;
        padding: 0 1rem;
    }

    .class-showcase-section .class-stats {
        padding: 0.75rem 1rem 1rem 1rem;
    }

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

    .cta-primary-button,
    .cta-secondary-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .feature-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Hero mobile */
    .hero-content {
        padding: 1.5rem 1rem;
        margin: 1rem;
    }

    .hero-cta-container {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .hero-btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .features-section,
    .class-showcase-section,
    .cta-section,
    .guides-section {
        padding: 3rem 0.85rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .class-showcase-section .class-grid {
        grid-template-columns: 1fr;
    }

    .class-showcase-section .class-image-container {
        height: 220px;
    }

    .class-showcase-section .class-name {
        font-size: 1.1rem;
        padding: 0 1.25rem;
    }

    .class-showcase-section .class-description {
        font-size: 0.85rem;
        padding: 0 1.25rem;
    }

    .class-showcase-section .class-stats {
        padding: 0.85rem 1.25rem 1.25rem 1.25rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .hero-content {
        padding: 1.25rem 0.85rem;
        margin: 0.75rem;
    }

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

/* ============================================
   GAME GUIDES SECTION
   ============================================ */

.guides-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0f1419 0%, #1a1f2e 100%);
}

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

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.guides-section .guide-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.guides-section .guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.guides-section .guide-card:hover::before {
    transform: translateX(100%);
}

.guides-section .guide-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.guides-section .guide-icon {
    width: 70px;
    height: 70px;
    margin: 0 0 1.5rem 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.guides-section .guide-card:hover .guide-icon {
    transform: scale(1.1) rotate(5deg);
}

.guides-section .guide-icon.how-to-play { 
    background: linear-gradient(135deg, #3b82f6, #2563eb); 
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4); 
}

.guides-section .guide-icon.combat-guide { 
    background: linear-gradient(135deg, #ef4444, #dc2626); 
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4); 
}

.guides-section .guide-icon.classes-guide {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.guides-section .guide-icon.pets-guide {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.guides-section .guide-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #ffd700;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.guides-section .guide-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.guides-section .guide-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.guides-section .topic-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #64748b;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guides-section .guide-cta {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: #ffd700;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.guides-section .guide-card:hover .guide-cta {
    gap: 0.75rem;
}

/* ============================================
   CLASS SHOWCASE SECTION
   ============================================ */
