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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0d0d0d;
    color: #e0e0e0;
    overflow-x: hidden;
}

h2, h3, .nav-brand {
    font-family: 'Cinzel', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* --- Navbar (Glassmorphism) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 187, 0, 0.2);
    z-index: 1000;
}

.nav-brand {
    font-size: 1.8rem;
    color: #ffb000;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffb000;
}

.btn-store {
    color: #ff4747 !important;
}

/* --- Hero Section (Parallax Background) --- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Aquí agregamos tu nueva imagen del mapa clásico */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85)), 
                url('https://i.ibb.co/RpB2BLfk/how-the-runescape-world-map-looked-in-2004-v0-wyiqnaxhcg9a1.webp') center/cover no-repeat;
    background-attachment: fixed;
    perspective: 1000px;
}

.hero-content {
    text-align: center;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

/* --- Pure CSS 3D Logo --- */
.logo-runelegacy {
    font-family: 'Georgia', serif; 
    font-size: 8rem; 
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 10px;
    
    color: #5c6e6d; 
    
    /* The magic shadows to create stone 3D effect */
    text-shadow: 
        -1px -1px 0px #8a9c9b, 
         1px  1px 0px #354242, 
         2px  2px 0px #1f2727, 
         3px  3px 0px #151a1a,
         8px  8px 15px rgba(0, 0, 0, 0.9);
    
    transform: translateZ(50px); 
    cursor: default;
    transition: color 0.3s ease;
}

.logo-runelegacy:hover {
    color: #697d7c;
}

.subtitle {
    color: #ffb000;
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    transform: translateZ(30px);
}

/* --- Buttons --- */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    transform: translateZ(40px);
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(180deg, #5c1414, #360a0a);
    color: #ffb000;
    border: 1px solid #ffb000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #7a1c1c, #4a0f0f);
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(20, 20, 20, 0.7);
    color: #fff;
    border: 1px solid #555;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(40, 40, 40, 0.9);
    border-color: #ffb000;
}

/* --- Info Section (Glass Cards) --- */
.info-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 80px 50px;
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png'), #111;
    flex-wrap: wrap;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 176, 0, 0.15);
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 176, 0, 0.8);
}

.glass-card h3 {
    color: #ffb000;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.status-online {
    color: #00ff00;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .logo-runelegacy {
        font-size: 3.5rem;
    }
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
}
