:root{
    --red:#b71c1c;
    --gold:#d8b26e;
    --dark:#090909;
}

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

body{
    color:white;
    font-family:'Inter',sans-serif;

    background-image:url("images/world-bg.png");
    background-size:cover;
    background-position:center top;
    background-attachment: fixed;
    background-repeat:no-repeat;

    background-color:#050505;
}

.hero{
    height:100vh;

    position:relative;

    background:transparent;

    display:flex;
    flex-direction:column;
}

.hero::before{
    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.25)
    );

    z-index:1;
}



.navbar{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 60px;

    background:rgba(0,0,0,.85);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(216,178,110,.15);
}

.logo{
    font-family:'Cinzel',serif;
    font-size:42px;
    font-weight:700;
    color:var(--gold);

    text-shadow:
    0 0 10px rgba(216,178,110,.5),
    0 0 20px rgba(216,178,110,.3);
}

.menu{
    display:flex;
    gap:35px;
    list-style:none;
}

.menu a{
    color:white;
    text-decoration:none;
}

.hero-content{
    flex:1;

    display:flex;
    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    text-align:center;

    padding-top:250px;

    position:relative;
    z-index:2;
}

.subtitle{
    color:#d8b26e;

    font-size:18px;

    letter-spacing:4px;

    font-weight:700;

    text-shadow:
        0 0 10px rgba(0,0,0,.8),
        0 0 20px rgba(0,0,0,.6);
}

.hero h1{
    font-family:'Cinzel',serif;
    font-size:90px;
    font-weight:900;

    color:#f4deb0;

    margin:15px 0;

    letter-spacing:4px;

    text-shadow:
        0 0 10px rgba(0,0,0,.8),
        0 0 25px rgba(0,0,0,.7),
        0 0 50px rgba(0,0,0,.5);

    animation:none;
}


.hero p{
    font-size:22px;

    color:#ffffff;

    font-weight:500;

    text-shadow:
        0 0 10px rgba(0,0,0,.9),
        0 0 25px rgba(0,0,0,.7);
}


.hero-buttons{
    margin-top:35px;
}

.btn{
    display:inline-block;

    padding:15px 35px;

    border-radius:10px;

    text-decoration:none;

    margin:0 10px;
}

.btn-gold{
    background:linear-gradient(
        135deg,
        #d8b26e,
        #f0d497
    );

    color:#111;

    font-weight:700;

    border:1px solid rgba(255,255,255,.08);
}

.btn-dark{
    background:rgba(0,0,0,.55);

    color:#d8b26e;

    border:1px solid rgba(216,178,110,.35);

    font-weight:700;
}

.btn-gold:hover,
.btn-dark:hover{
    box-shadow:0 0 20px rgba(216,178,110,.35);
}

.status-section{
    background:transparent;
}

.status-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.status-card{
    background:rgba(10,10,10,.55);

    border:1px solid rgba(216,178,110,.25);

    border-radius:18px;

    padding:30px;

    text-align:center;

    transition:.3s;
}

.status-card:hover{
    transform:translateY(-5px);

    border-color:#d8b26e;
}

.status-icon{
    font-size:32px;
    display:block;
    margin-bottom:15px;
}

.status-card h3{
    color:#d8b26e;
    margin-bottom:10px;
}

.pagan-section{
    padding:100px 40px;
    background:transparent;
}

.section-title{
    text-align:center;
    font-size:48px;
    color:#d8b26e;
    margin-bottom:50px;
    font-family:'Cinzel',serif;
}

.pagan-box{
    max-width:1200px;
    margin:auto;

    background:
    linear-gradient(
    rgba(183,28,28,.15),
    rgba(0,0,0,.7)
    );

    border:1px solid rgba(216,178,110,.3);

    border-radius:20px;

    padding:50px;

    text-align:center;
}

.pagan-box h2{
    color:#d8b26e;
    margin-bottom:20px;
}

.pagan-box p{
    color:#ccc;
    margin-bottom:40px;
}

.pagan-times{
    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:15px;

    margin-bottom:30px;
}

.pagan-times div{
    background:#141414;

    border:1px solid rgba(216,178,110,.2);

    padding:20px;

    border-radius:12px;

    font-size:20px;

    font-weight:700;
}

.duration{
    color:#d8b26e;
    font-size:18px;
}

.features-section{
    background:transparent;
}

.features-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-card{
    background:rgba(10,10,10,.55);
    border:1px solid rgba(216,178,110,.2);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
    border-color:#d8b26e;
}

.feature-card h3{
    color:#d8b26e;
    margin-bottom:15px;
}

.feature-card p{
    color:#ccc;
}

.rates-section{
    background:transparent;
}

.rates-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.rate-card{
    background:rgba(10,10,10,.55);
    border:1px solid rgba(216,178,110,.25);
    border-radius:18px;
    padding:40px;
    text-align:center;
    transition:.3s;
}

.rate-card:hover{
    transform:translateY(-5px);
    border-color:#d8b26e;
}

.rate-card h3{
    color:#d8b26e;
    margin-bottom:20px;
}

.rate-card p{
    margin-bottom:10px;
}

.about-section{
    background:transparent;
}

.about-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.about-card{
    background:rgba(10,10,10,.55);
    border:1px solid rgba(216,178,110,.25);
    border-radius:18px;
    padding:35px;
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-5px);
    border-color:#d8b26e;
}

.about-card h3{
    color:#d8b26e;
    margin-bottom:15px;
}

.about-card p{
    color:#ccc;
    line-height:1.7;
}

.events-section{
    background:transparent;
}

.timeline{
    max-width:1000px;
    margin:auto;
}

.timeline-item{
    display:flex;
    align-items:center;

    background:rgba(10,10,10,.55);

    border:1px solid rgba(216,178,110,.2);

    border-radius:15px;

    padding:25px;

    margin-bottom:20px;

    transition:.3s;
}

.timeline-item:hover{
    border-color:#d8b26e;
    transform:translateX(10px);
}

.event-time{
    width:120px;

    color:#d8b26e;

    font-size:24px;

    font-weight:700;
}

.event-name{
    font-size:20px;
}

.download-section{
    padding:120px 40px;
    background:transparent;
}

.download-box{
    max-width:900px;
    margin:auto;

    text-align:center;

    background:rgba(0,0,0,.55);

    border:1px solid rgba(216,178,110,.25);

    border-radius:20px;

    padding:60px;
}

.download-subtitle{
    color:#d8b26e;
    letter-spacing:4px;
}

.download-box h2{
    margin:20px 0;

    font-size:48px;

    color:#d8b26e;

    font-family:'Cinzel',serif;
}

.download-box p{
    color:#ccc;

    margin-bottom:40px;
}

.download-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.download-btn{
    background:#b71c1c;
    color:white;

    text-decoration:none;

    padding:18px 35px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.download-btn:hover{
    transform:translateY(-3px);
}

.secondary-btn{
    background:#1a1a1a;
}

.discord-section{
    background:transparent;
}

.discord-card{
    max-width:700px;
    margin:auto;

    background:rgba(10,10,10,.55);

    border:1px solid rgba(216,178,110,.25);

    border-radius:20px;

    padding:50px;

    text-align:center;
}

.discord-card h3{
    color:#d8b26e;
    margin-bottom:20px;
}

.discord-card p{
    color:#ccc;
    margin-bottom:30px;
}

.discord-btn{
    display:inline-block;

    padding:15px 30px;

    background:#5865F2;

    color:white;

    text-decoration:none;

    border-radius:10px;

    font-weight:700;
}

@keyframes heroGlow{

    0%{
        text-shadow:
        0 0 10px rgba(216,178,110,.8),
        0 0 25px rgba(216,178,110,.5),
        0 0 50px rgba(216,178,110,.3);
    }

    50%{
        text-shadow:
        0 0 20px rgba(216,178,110,1),
        0 0 40px rgba(216,178,110,.8),
        0 0 80px rgba(216,178,110,.5);
    }

    100%{
        text-shadow:
        0 0 10px rgba(216,178,110,.8),
        0 0 25px rgba(216,178,110,.5),
        0 0 50px rgba(216,178,110,.3);
    }

}

.hero-content{
    animation:fadeUp 1.5s ease;
}

/* ===== GLOBAL ===== */

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}

/* ===== MENU ===== */

.menu a{
    position:relative;
    transition:.3s;
}

.menu a:hover{
    color:#d8b26e;
}

.menu a::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:#d8b26e;

    transition:.3s;
}

.menu a:hover::after{
    width:100%;
}

/* ===== CARDS ===== */

.status-card,
.feature-card,
.rate-card,
.about-card,
.discord-card,
.pagan-box,
.download-box{
    box-shadow:
    0 0 25px rgba(0,0,0,.35);
}

.status-card:hover,
.feature-card:hover,
.rate-card:hover,
.about-card:hover{
    box-shadow:
    0 0 30px rgba(216,178,110,.15);
}

/* ===== BUTTONS ===== */

.btn,
.download-btn,
.discord-btn{
    transition:.3s;
}

.btn:hover,
.download-btn:hover,
.discord-btn:hover{
    transform:translateY(-4px);
}

/* ===== TITLES ===== */

.section-title{
    position:relative;
}

.section-title::after{
    content:'';

    display:block;

    width:120px;
    height:2px;

    background:#d8b26e;

    margin:15px auto 0;
}

/* ===== HERO ===== */

.hero-content{
    animation:fadeUp 1.5s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===== FOOTER ===== */

.footer{
    padding:60px 20px;

    text-align:center;

    background:#050505;

    border-top:1px solid rgba(216,178,110,.15);
}

.footer-logo{
    font-family:'Cinzel',serif;

    font-size:32px;

    color:#d8b26e;

    margin-bottom:15px;
}

.footer-links{
    margin:20px 0;
}

.footer-links a{
    color:#d8b26e;

    text-decoration:none;

    margin:0 10px;
}

.footer-links a:hover{
    color:white;
}

.copyright{
    color:#666;
}

/* ===== MOBILE ===== */

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
        padding:20px;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero h1{
        font-size:70px;
    }

    .hero p{
        font-size:18px;
    }

    .status-grid,
    .features-grid,
    .rates-grid,
    .about-grid{
        grid-template-columns:1fr;
    }

    .pagan-times{
        grid-template-columns:repeat(2,1fr);
    }

    .download-buttons{
        flex-direction:column;
    }

    .download-box h2{
        font-size:32px;
    }

    .event-time{
        width:90px;
        font-size:18px;
    }

    .timeline-item{
        padding:15px;
    }
}

.download-btn{
    box-shadow:0 0 25px rgba(183,28,28,.5);
}

.vote-section{
    background:transparent;
}

.vote-box{
    max-width:1000px;
    margin:auto;

    text-align:center;

    background:rgba(0,0,0,.55);

    border:1px solid rgba(216,178,110,.25);

    border-radius:20px;

    padding:60px;
}

.vote-box h2{
    margin:20px 0;

    font-size:48px;

    color:#d8b26e;

    font-family:'Cinzel',serif;
}

.vote-box p{
    color:#ccc;

    margin-bottom:40px;
}

.vote-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.vote-btn{
    background:#b71c1c;

    color:white;

    text-decoration:none;

    padding:16px 30px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.vote-btn:hover{
    transform:translateY(-3px);

    box-shadow:0 0 20px rgba(183,28,28,.4);
}

.announcement-section{
    padding:60px 40px;
    background:transparent;
}

.announcement-box{
    max-width:1200px;
    margin:auto;

    background:
    linear-gradient(
    rgba(183,28,28,.15),
    rgba(0,0,0,.7)
    );

    border:1px solid rgba(216,178,110,.3);

    border-radius:20px;

    padding:50px;

    text-align:center;
}

.announcement-tag{
    color:#d8b26e;
    letter-spacing:4px;
    font-weight:700;
}

.announcement-box h2{
    color:#d8b26e;
    margin:20px 0;
    font-size:42px;
    font-family:'Cinzel',serif;
}

.announcement-box p{
    color:#ccc;
}

.announcement-benefits{
    margin:35px 0;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:15px;

    color:white;

    font-weight:600;
}

.announcement-footer{
    color:#d8b26e;
    font-weight:700;
}

.info-section{
    padding:80px 40px;
    background:transparent;
}

.info-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:25px;

    align-items:stretch;
}

.info-grid .announcement-box,
.info-grid .pagan-box{
    height:100%;
}

.hub-section{
    padding:80px 40px;
    background:#0b0b0b;
}



.hub-card{
    background:rgba(10,10,10,.55);

    border:1px solid rgba(216,178,110,.25);

    border-radius:20px;

    padding:35px;

    box-shadow:0 0 25px rgba(0,0,0,.35);
}

.hub-tag{
    color:#d8b26e;
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
}

.hub-card h2{
    margin:15px 0;
    color:#d8b26e;
    font-family:'Cinzel',serif;
}

.premium-card ul{
    margin-top:20px;
    list-style:none;
}

.premium-card li{
    margin-bottom:12px;
}

.update-item{
    padding:15px;
    margin-top:15px;

    background:#181818;

    border-left:3px solid #d8b26e;

    border-radius:8px;
}

.update-item span{
    display:block;
    color:#d8b26e;
    font-size:12px;
    margin-bottom:5px;
}

.pagan-mini-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin-top:20px;
}

.pagan-mini-grid div{
    background:#181818;
    padding:12px;
    text-align:center;
    border-radius:10px;
}

@media(max-width:1100px){

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

}

.info-row{
    max-width:1500px;
    margin:40px auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:25px;

    padding:0 40px;
}

.info-box{
    background:rgba(10,10,10,.55);

    border:1px solid rgba(216,178,110,.25);

    border-radius:20px;

    padding:35px;

    box-shadow:0 0 25px rgba(0,0,0,.35);
}

.info-box h2{
    color:#d8b26e;
    font-family:'Cinzel',serif;

    margin-bottom:25px;

    text-align:center;
}

.info-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.info-list div{
    background:#181818;

    padding:14px;

    border-radius:10px;

    text-align:center;
}

@media(max-width:1100px){

    .info-row{
        grid-template-columns:1fr;
    }

}

.action-section{
    background:transparent;
    padding:40px 20px 80px;
}

.action-grid{
    max-width:1500px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr 1fr;

    gap:25px;
}

.action-card{
    background:rgba(10,10,10,.55);

    border:1px solid rgba(216,178,110,.25);

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 0 25px rgba(0,0,0,.35);
}

.action-card h2{
    color:#d8b26e;
    margin-bottom:20px;
    font-family:'Cinzel',serif;
}

.action-card p{
    color:#ccc;
    margin-bottom:25px;
}

.action-buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.action-buttons a{
    background:transparent;

    color:#d8b26e;

    text-decoration:none;

    padding:12px 20px;

    border-radius:10px;

    font-weight:700;

    border:1px solid rgba(216,178,110,.45);

    transition:.3s;
}

.action-buttons a:hover{
    background:#d8b26e;

    color:#111;

    transform:translateY(-3px);

    box-shadow:0 0 20px rgba(216,178,110,.35);
}

@media(max-width:1100px){

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

}

.hub-section{
    background:transparent;
}


.premium-banner{
    width:100%;
    height:260px;

    object-fit:cover;
    object-position:center;

    display:block;

    border-radius:20px;

    border:1px solid rgba(216,178,110,.25);

    box-shadow:0 0 35px rgba(0,0,0,.35);
}

.hub-bottom{
    display:grid;

    grid-template-columns:1.7fr 1fr;

    gap:25px;
}

.hub-bottom{
    display:grid;
    grid-template-columns:420px 1fr;

    gap:25px;

    align-items:stretch;
}

.premium-box{
    background:rgba(10,10,10,.55);

    border:1px solid rgba(216,178,110,.25);

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 0 25px rgba(0,0,0,.35);
}

.premium-banner{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.hub-bottom{
    display:grid;
    grid-template-columns:300px 1fr 300px;
    gap:25px;
    margin:60px auto;
    max-width:1500px;
}

.premium-box{
    background:rgba(10,10,10,.55);
    border:1px solid rgba(216,178,110,.25);
    border-radius:20px;
    overflow:hidden;
}

.premium-banner{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media(max-width:1200px){
    .hub-bottom{
        grid-template-columns:1fr;
    }
}

#server-time{
    margin-top:12px;

    color:#d8b26e;

    font-size:18px;

    font-weight:600;

    letter-spacing:2px;
}

.server-time-box{
    position:absolute;

    top:120px;
    right:50px;

    z-index:2;

    background:rgba(10,10,10,.80);

    border:1px solid rgba(216,178,110,.25);

    border-radius:12px;

    padding:10px 18px;

    text-align:center;

    box-shadow:0 0 20px rgba(0,0,0,.35);
}

.server-time-box span{
    display:block;

    color:#d8b26e;

    font-size:10px;

    letter-spacing:2px;

    margin-bottom:3px;
}

#server-time{
    font-size:18px;

    font-weight:700;

    color:white;
}

.page-header{
    text-align:center;
    padding:120px 20px 60px;
}

.page-header h1{

    font-family:'Cinzel',serif;

    font-size:72px;

    font-weight:900;

    color:#f4deb0;

    letter-spacing:3px;

    text-shadow:
        0 0 10px rgba(0,0,0,.8),
        0 0 25px rgba(0,0,0,.7),
        0 0 50px rgba(0,0,0,.5);

    margin-bottom:15px;
}

.page-header p{

    font-size:22px;

    color:#ffffff;

    font-weight:500;

    text-shadow:
        0 0 10px rgba(0,0,0,.9),
        0 0 25px rgba(0,0,0,.7);

    max-width:700px;

    margin:auto;
}

.menu a.active{
    color:#d8b26e;
}

.menu a.active::after{
    width:100%;
}

.register-form{
    max-width:700px;
    margin:40px auto;
    padding:40px;

    background:rgba(0,0,0,.45);
    backdrop-filter:blur(10px);

    border:1px solid rgba(216,178,110,.25);
    border-radius:20px;
}

.register-form h2{
    text-align:center;
    margin-bottom:30px;
    color:#d8b26e;
}

.register-form input{
    width:100%;
    padding:15px;
    margin-bottom:15px;

    background:rgba(0,0,0,.65);

    border:1px solid rgba(216,178,110,.25);
    border-radius:10px;

    color:white;
    font-size:16px;
}

.register-form input:focus{
    outline:none;
    border-color:#d8b26e;
    box-shadow:0 0 15px rgba(216,178,110,.3);
}

.register-btn{
    width:100%;
    padding:16px;

    border:none;
    border-radius:10px;

    background:linear-gradient(
        135deg,
        #d8b26e,
        #f3d18f
    );

    color:#111;
    font-weight:bold;
    font-size:16px;

    cursor:pointer;
}

.register-section{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:60px auto;
}

.register-card{
    width:600px;
    padding:40px;

    background:rgba(0,0,0,.55);
    backdrop-filter:blur(10px);

    border:1px solid rgba(216,178,110,.25);
    border-radius:20px;

    box-shadow:0 0 30px rgba(0,0,0,.35);
}

.register-card h2{
    text-align:center;
    color:#d8b26e;
    margin-bottom:30px;
    font-size:32px;
}

.register-card label{
    display:block;
    margin-bottom:8px;
    color:#d8b26e;
    font-weight:600;
}

.register-card input{
    width:100%;
    padding:14px;
    margin-bottom:20px;

    background:rgba(0,0,0,.65);

    border:1px solid rgba(216,178,110,.25);
    border-radius:10px;

    color:#fff;
    font-size:15px;
}

.register-card input:focus{
    outline:none;
    border-color:#d8b26e;
    box-shadow:0 0 15px rgba(216,178,110,.25);
}

.register-btn{
    width:100%;
    padding:16px;

    border:none;
    border-radius:10px;

    background:linear-gradient(
        135deg,
        #d8b26e,
        #f0d497
    );

    color:#111;
    font-weight:bold;
    font-size:16px;

    cursor:pointer;

    transition:.3s;
}

.register-btn:hover{
    transform:translateY(-2px);
}

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

.register-header p{
    color:#cfcfcf;
    margin-top:10px;
}

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

.form-group label{
    display:block;
    margin-bottom:8px;
    color:#d8b26e;
    font-weight:600;
    letter-spacing:1px;
}

.register-info{
    margin-top:25px;
    display:flex;
    flex-direction:column;
    gap:8px;
    text-align:center;
    color:#cfcfcf;
    font-size:14px;
}

.updates-section{
max-width:1000px;
margin:60px auto;
padding:0 20px;
}

.updates-box{
background:rgba(10,10,10,.55);

border:1px solid rgba(216,178,110,.25);

border-radius:20px;

padding:40px;

box-shadow:0 0 25px rgba(0,0,0,.35);

}

.updates-box h2{
text-align:center;

color:#d8b26e;

font-family:'Cinzel',serif;

margin-bottom:30px;

}

.discord-home-section{
max-width:1000px;

margin:40px auto 80px;

padding:0 20px;

}

.discord-home-card{
background:rgba(10,10,10,.55);

border:1px solid rgba(216,178,110,.25);

border-radius:20px;

padding:50px;

text-align:center;

box-shadow:0 0 25px rgba(0,0,0,.35);

}

.discord-home-card h2{
color:#d8b26e;

font-family:'Cinzel',serif;

margin-bottom:20px;

}

.discord-home-card p{
color:#ccc;

margin-bottom:30px;

}

.updates-section{
    padding:80px 40px;
}

.updates-box{
    max-width:900px;
    margin:auto;

    background:rgba(10,10,10,.55);

    border:1px solid rgba(216,178,110,.25);

    border-radius:20px;

    padding:40px;

    box-shadow:0 0 25px rgba(0,0,0,.35);
}

.updates-box h2{
    text-align:center;

    color:#d8b26e;

    font-family:'Cinzel',serif;

    margin-bottom:30px;
}

.discord-home{
    padding:40px 40px 80px;
}

.updates-section{
    max-width:1000px;
    margin:80px auto;
    padding:0 20px;
}

.updates-section h2{
    text-align:center;

    color:#f4deb0;

    font-family:'Cinzel',serif;

    font-size:48px;

    letter-spacing:2px;

    margin-bottom:35px;

    text-shadow:
        0 0 10px rgba(0,0,0,.8),
        0 0 25px rgba(0,0,0,.6);
}

.updates-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.update-row{
    display:flex;
    align-items:center;
    gap:20px;

    background:rgba(0,0,0,.35);

    border:1px solid rgba(216,178,110,.15);

    border-radius:12px;

    padding:18px 24px;

    backdrop-filter:blur(4px);
}

.update-date{
    color:#d8b26e;
    font-weight:700;
    min-width:60px;
}

.standard-card {
    border: 1px solid rgba(255,255,255,0.15);
}

.premium-blue {
    border: 1px solid rgba(80,150,255,0.4);
    box-shadow: 0 0 15px rgba(80,150,255,0.15);
}

.premium-silver {
    border: 1px solid rgba(220,220,220,0.4);
    box-shadow: 0 0 15px rgba(220,220,220,0.12);
}

.premium-gold {
    border: 1px solid rgba(228,192,122,0.5);
    box-shadow: 0 0 20px rgba(228,192,122,0.18);
}

.premium-blue h3 {
    color: #6aa7ff;
}

.premium-silver h3 {
    color: #d8d8d8;
}

.premium-gold h3 {
    color: #e4c07a;
}

.vote-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(5,1fr);

    gap:20px;
}

.login-error{
    background: rgba(180,30,30,.20);
    border: 1px solid rgba(255,80,80,.40);
    color: #ffb0b0;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.panel-link{
    color:#d8b26e;
    text-decoration:none;
    font-weight:600;
    transition:.2s;
}

.panel-link:hover{
    color:#ffffff;
}

.account-dropdown{
    position:relative;
    list-style:none;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    right:0;

    min-width:180px;

    background:rgba(10,10,10,.95);
    border:1px solid rgba(216,178,110,.25);
    border-radius:10px;

    padding:10px 0;
    margin-top:10px;

    display:none;

    z-index:9999;
}

.account-dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu a{
    display:block;
    padding:12px 20px;
    color:#fff;
    text-decoration:none;
    white-space:nowrap;
}

.dropdown-menu a:hover{
    background:rgba(216,178,110,.15);
    color:#d8b26e;
}

.account-dropdown{
    position:relative;
    list-style:none;
}

.dropdown-menu{
    display:none;

    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);

    min-width:180px;

    background:rgba(15,15,15,.98);

    border:1px solid rgba(216,178,110,.25);
    border-radius:10px;

    padding:8px 0;
    margin-top:0;

    z-index:9999;
}

.account-dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu a{
    display:block;
    padding:12px 20px;
    color:#fff;
    text-decoration:none;
    white-space:nowrap;
}

.dropdown-menu a:hover{
    background:rgba(216,178,110,.15);
    color:#d8b26e;
}