.hero-section { background: url('/images/main.webp') center/cover no-repeat; position: relative; padding: 6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); } .hero-section::before { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: linear-gradient(to bottom, rgba(13,16,23,0.5), #0d1017); z-index: 0; } .hero-content { position: relative; z-index: 1; }
/* source/main.css */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





/* Header Container */




/* Logo */




/* Nav Links Base */






.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff4500;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}



/* Buttons */
.nav-links .btn-register {
    background: #ff4500;
    color: #ffffff;
    border-radius: 4px;
    border: 1px solid #ff7700;
}

.nav-links .btn-register:hover {
    background: #d60000;
    color: #ffffff;
    border-color: #ffcc00;
}

.nav-links .btn-register::after {
    display: none;
}

.nav-links .btn-login {
    border: 1px solid #ff8c00;
    color: #ff8c00;
    border-radius: 4px;
    background: rgba(255, 69, 0, 0.1);
}

.nav-links .btn-login:hover {
    background-color: #ff8c00;
    color: #080303;
    font-weight: 700;
}

.nav-links .btn-login::after {
    display: none;
}

/* =========================================
   RIGHT SIDE PANEL (FIXED STATUS + DISCORD)
   ========================================= */
.right-panel-container {
    position: absolute;
    top: 100px;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 280px;
    z-index: 100;
}

/* Server Status Box */
.server-status-box {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: rgba(15, 3, 2, 0.92);
    border: 1px solid rgba(255, 69, 0, 0.4);
    border-radius: 6px;
    padding: 0.9rem 1.1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 9px;
    height: 9px;
    background-color: #00ff66;
    border-radius: 50%;
}

.status-title { color: #a09080; }
.status-state {
    color: #00ff66;
    font-weight: 700;
    margin-left: auto;
}

.status-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 69, 0, 0.25);
}

.players-online {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f0d8c0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.players-online span {
    color: #ffcc00;
    font-weight: 900;
    font-size: 1.1rem;
}

.realmlist-box {
    background: rgba(5, 1, 1, 0.8);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 4px;
    padding: 0.8rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.realmlist-box:hover {
    background: rgba(255, 170, 0, 0.08);
    border-color: #ffaa00;
}

.realmlist-box code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #ffaa00;
    font-weight: 700;
}

.copy-hint {
    font-family: 'Roboto', sans-serif;
    font-size: 0.65rem;
    color: #ffaa00;
    margin-top: 0.4rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

/* Discord Widget Box */
.discord-widget-wrapper {
    background: rgba(15, 3, 2, 0.92);
    border: 1px solid rgba(255, 69, 0, 0.4);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.widget-

.widget-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: #ffaa00;
    letter-spacing: 1.5px;
    text-align: center;
}

.discord-widget-wrapper iframe { border: none; display: block; }

.btn-discord-join {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(255, 69, 0, 0.2);
    border-top: 1px solid rgba(255, 69, 0, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.btn-discord-join:hover {
    background: #ff4500;
    color: #ffffff;
}

/* =========================================
   MAIN CONTENT WRAPPER & HERO SECTION
   ========================================= */
.main-wrapper {
    width: 100%;
    position: relative;
    z-index: 5;
}

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: calc(100vh - 80px);
    padding: 2rem;
}

.hero-content {
    max-width: min(850px, calc(100vw - 680px));
    margin: 0 auto;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffaa00;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.2rem;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

.hero-title span {
    color: #ff5500;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #e0d0c0;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    transition: all 0.25s ease;
    cursor: pointer;
    text-align: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #0078ff, #0056cc);
    color: #ffffff !important;
    border: 1px solid #3399ff;
    box-shadow: 0 4px 15px rgba(0, 120, 255, 0.4);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #1a8cff, #0066ee);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 255, 0.6);
    color: #ffffff !important;
}

.btn-hero-secondary {
    background: rgba(13, 16, 23, 0.7);
    color: #f2a900 !important;
    border: 1.5px solid #f2a900;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    background: rgba(242, 169, 0, 0.15);
    color: #ffc233 !important;
    border-color: #ffc233;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 169, 0, 0.25);
}

/* =========================================
   SERVER INFORMATION SECTION (SCROLL DOWN)
   ========================================= */
.info-section {
    max-width: 1200px;
    margin: 4rem auto 8rem;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #ffaa00;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0.5rem 0 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

.flame-divider {
    width: 150px;
    height: 3px;
    background: #ff4500;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.info-card { background: linear-gradient(145deg, #181d29, #131720); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 2.2rem 1.8rem; text-align: center; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff4500;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.info-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.5); border-color: rgba(242, 169, 0, 0.4); }

.info-card:hover::before {
    opacity: 1;
}

.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffcc00;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.info-card p {
    font-size: 0.95rem;
    color: #d8c8b8;
    line-height: 1.6;
}

/* Hide right panel completely on smaller screens to avoid overlap */
@media (max-width: 1200px) {
    .right-panel-container {
        display: none;
    }
    .hero-content {
        max-width: 850px;
    }
}

/* Custom Discord Widget */
.custom-discord-widget {
    background-color: #1a1a1a;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    border-bottom: none;
}
.d-
.d-members {
    padding: 10px;
    background-color: #2b2d31;
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.d-members::-webkit-scrollbar {
    width: 6px;
}
.d-members::-webkit-scrollbar-track {
    background: #1e1f22; 
}
.d-members::-webkit-scrollbar-thumb {
    background: #111214; 
    border-radius: 4px;
}
.d-member-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.d-avatar-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
}
.d-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.d-status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #2b2d31;
}
.d-status.online { background-color: #23a559; }
.d-status.idle { background-color: #f0b232; }
.d-status.dnd { background-color: #f23f43; }
.d-name {
    color: #dbdee1;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}
.d-footer {
    background-color: #232428;
    padding: 10px 12px;
    border-top: 1px solid #1e1f22;
}


