* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', cursive;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.arenaContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.battlegroundNav {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #d4af37;
}

.dungeonMaster {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guildEmblem {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mysticalSymbol {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    transition: transform 0.3s ease;
}

.mysticalSymbol:hover {
    transform: rotate(360deg);
}

.legendaryTitle {
    color: #d4af37;
    text-decoration: none;
    font-size: 18px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
}

.legendaryTitle:hover {
    color: #32cd32;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
}

.epicBattlegrounds {
    padding: 120px 0 80px;
    background: radial-gradient(circle at 30% 70%, rgba(50, 205, 50, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                #0a0a0a;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.warriorContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.phoneFrameArena {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.mobileBattleDisplay {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 3px solid #d4af37;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8),
                inset 0 2px 10px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.mobileBattleDisplay::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
}

.gameplayFootage {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(50, 205, 50, 0.3);
    transition: transform 0.3s ease;
}

.gameplayFootage:hover {
    transform: scale(1.05);
}

.heroCallToArms {
    text-align: left;
}

.battleCryHeader {
    font-size: 48px;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 175, 55, 0.5);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

.questDescription {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #c0c0c0;
}

.actionButtonsGuild {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.downloadSpell, .playNowQuest {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.downloadSpell {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    color: #fff;
    border-color: #32cd32;
}

.downloadSpell:hover {
    background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.4);
}

.playNowQuest {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000;
    border-color: #d4af37;
}

.playNowQuest:hover {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.mysticalBackground {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.monsterSilhouette {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.silhouetteOne {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.silhouetteTwo {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.silhouetteThree {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.emeraldMist {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(50, 205, 50, 0.1) 0%, transparent 100%);
    animation: mist 8s ease-in-out infinite;
}

@keyframes mist {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.championAttributes, .battleClass, .arenaTypes, .gameVisions, .guildTestimonials, .finalQuest, .gameStatistics, .mysticalQuestions {
    padding: 80px 0;
    position: relative;
}

.championAttributes {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.battleClass {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.sectionEnchantment {
    text-align: center;
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.abilitiesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.magicalCard {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.magicalCard::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.magicalCard:hover::before {
    opacity: 1;
}

.magicalCard:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.spellIcon {
    font-size: 48px;
    color: #32cd32;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.magicalCard:hover .spellIcon {
    color: #d4af37;
    transform: scale(1.2);
}

.cardTitle {
    font-size: 18px;
    color: #d4af37;
    margin-bottom: 15px;
}

.cardLore {
    font-size: 12px;
    color: #c0c0c0;
    line-height: 1.6;
}

.classesWarband {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.warriorArchetype {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(50, 205, 50, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.warriorArchetype:hover {
    transform: translateY(-10px);
    border-color: #32cd32;
    box-shadow: 0 15px 40px rgba(50, 205, 50, 0.2);
}

.classPortrait {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.warriorArchetype:hover .classPortrait {
    border-color: #d4af37;
    transform: scale(1.05);
}

.classTitle {
    font-size: 16px;
    color: #32cd32;
    margin-bottom: 10px;
}

.classBio {
    font-size: 11px;
    color: #c0c0c0;
}

.modesLegion {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.battleMode {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.battleMode:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.battleMode i {
    font-size: 40px;
    color: #32cd32;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.battleMode:hover i {
    color: #d4af37;
    transform: scale(1.2);
}

.battleMode h3 {
    font-size: 16px;
    color: #d4af37;
    margin-bottom: 10px;
}

.battleMode p {
    font-size: 11px;
    color: #c0c0c0;
}

.visionGallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.mysticalScreenshot {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.mysticalScreenshot:hover {
    transform: scale(1.05);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.testimonialScroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.playerReview {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(50, 205, 50, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.playerReview:hover {
    transform: translateY(-5px);
    border-color: #32cd32;
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.2);
}

.reviewStars {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 15px;
}

.playerReview p {
    font-size: 12px;
    color: #c0c0c0;
    margin-bottom: 15px;
    font-style: italic;
}

.playerName {
    font-size: 10px;
    color: #32cd32;
    font-weight: bold;
}

.finalQuest {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.questFinalCall {
    font-size: 14px;
    color: #c0c0c0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.epicDownloadButton {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #32cd32;
}

.epicDownloadButton:hover {
    background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.4);
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.statCard {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.statCard:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}

.statNumber {
    font-size: 32px;
    color: #32cd32;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.statLabel {
    font-size: 12px;
    color: #d4af37;
}

.faqSpells {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.questionCard {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(50, 205, 50, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.questionCard:hover {
    transform: translateY(-5px);
    border-color: #32cd32;
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.2);
}

.questionCard h3 {
    font-size: 14px;
    color: #d4af37;
    margin-bottom: 15px;
}

.questionCard p {
    font-size: 11px;
    color: #c0c0c0;
    line-height: 1.6;
}

.dungeonFooter {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 2px solid #d4af37;
    padding: 50px 0 20px;
}

.footerGuild {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footerSection h4 {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 20px;
}

.footerLinks {
    list-style: none;
}

.footerLinks li {
    margin-bottom: 10px;
}

.footerLinks a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.3s ease;
}

.footerLinks a:hover {
    color: #32cd32;
}

.footerSection p {
    color: #c0c0c0;
    font-size: 11px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footerSection i {
    color: #d4af37;
    width: 16px;
}

.footerBottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 20px;
    text-align: center;
}

.footerBottom p {
    color: #888;
    font-size: 10px;
}

.legalScrolls {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.documentParchment {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.legalTitle {
    font-size: 32px;
    color: #d4af37;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.lastUpdated {
    text-align: center;
    color: #888;
    font-size: 11px;
    margin-bottom: 40px;
}

.legalSection {
    margin-bottom: 30px;
}

.legalSection h2 {
    color: #32cd32;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(50, 205, 50, 0.3);
    padding-bottom: 5px;
}

.legalSection h3 {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legalSection p {
    color: #c0c0c0;
    font-size: 11px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legalSection ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legalSection li {
    color: #c0c0c0;
    font-size: 11px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.cookieTable {
    background: rgba(50, 205, 50, 0.05);
    border: 1px solid rgba(50, 205, 50, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.cookieTable h3 {
    color: #32cd32;
    font-size: 14px;
    margin-bottom: 15px;
}

.cookieTable ul {
    margin-left: 0;
}

.cookieTable li {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 3px solid #d4af37;
}

@media (max-width: 768px) {
    .battleCryHeader {
        font-size: 32px;
    }
    
    .sectionEnchantment {
        font-size: 24px;
    }
    
    .warriorContainer {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .heroCallToArms {
        order: 2;
    }
    
    .phoneFrameArena {
        order: 1;
    }
    
    .actionButtonsGuild {
        justify-content: center;
    }
    
    .abilitiesGrid,
    .classesWarband,
    .modesLegion,
    .visionGallery,
    .testimonialScroll,
    .statsGrid,
    .faqSpells {
        grid-template-columns: 1fr;
    }
    
    .footerGuild {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .documentParchment {
        padding: 20px;
        margin: 0 10px;
    }
    
    .legalTitle {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .arenaContainer {
        padding: 0 15px;
    }
    
    .battleCryHeader {
        font-size: 24px;
    }
    
    .questDescription {
        font-size: 12px;
    }
    
    .downloadSpell,
    .playNowQuest {
        padding: 12px 20px;
        font-size: 11px;
    }
    
    .gameplayFootage {
        height: 400px;
    }
    
    .magicalCard,
    .warriorArchetype,
    .battleMode,
    .playerReview,
    .statCard,
    .questionCard {
        padding: 20px;
    }
    
    .documentParchment {
        padding: 15px;
    }
}