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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:
        linear-gradient(rgba(25,8,70,.55),rgba(25,8,70,.55)),
        url("../images/background.webp") center center / cover no-repeat fixed;

    background-color:#2b0d63;

    min-height:100vh;
    color:#fff;
}

.header{
    width:100%;
    padding:35px 50px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    position:relative;
    z-index:3;
}

.logo{
    position:absolute;
    top:35px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    z-index:1000001;
    pointer-events:none;
}

.logo h1{
    font-size:55px;
    font-weight:900;
    letter-spacing:3px;
    color:#fff;
    text-shadow:
        0 0 5px rgba(141,77,255,.5),
        0 5px 15px rgba(0,0,0,.4);
}

.logo span{
    color:#8d4dff;
}

.menu-button{
    position:relative;
    margin-left:auto;
    order:2;
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#b06cff,#6a35ff);
    border:none;
    border-radius:15px;
    font-size:26px;
    color:#fff;
    cursor:pointer;
    z-index:10;
    box-shadow:
    0 8px 20px rgba(0,0,0,.35),
    0 0 20px rgba(141,77,255,.55);
    transition:.3s;
}

.menu-button:hover{
    transform:scale(1.08);
    box-shadow:
    0 10px 25px rgba(0,0,0,.45),
    0 0 30px rgba(141,77,255,.75);
}

.menu-button a{
    color:#fff;
    text-decoration:none;
    display:block;
}

.character{
    position:fixed;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:700px;
    z-index:1;
}

.character img{
    width:100%;
    opacity:.20;
}

.login-box{
    position:relative;
    margin:60px auto 0;
    width:320px;
    min-height:520px;
    padding:25px;
    background:rgba(220,200,255,.75);
    text-align:center;
    z-index:1;

    box-shadow:
    0 10px 25px rgba(0,0,0,.25),
    0 0 35px rgba(141,77,255,.65);

    border-radius:12px;
    animation:loginShow 1.2s ease;
}
.login-box input{
    width:100%;
    padding:15px;
    border:none;
    border-radius:0;
    font-size:18px;
    margin-bottom:20px;
}

.login-box button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:25px;
    background:#8d4dff;
    color:#fff;
    font-size:22px;
    font-weight:800;
    letter-spacing:.5px;
    cursor:pointer;
    transition:all .25s ease;
}
.login-box button:hover{
    transform:translateY(-2px) scale(1.03);
    box-shadow:0 8px 22px rgba(141,77,255,.45);
}
.login-box button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,.35);
}

@media (max-width:600px){

    .menu-button{
        transform:translateX(40px);
    }

    .logo h1{
        font-size:48px;
    }

    .login-box{
        width:75%;
        top:60%;
    }

    .character{
        width:100%;
    }
}
.login-box h2{
    width:100%;
    font-size:28px;
    margin-bottom:25px;
    color:#fff;
    font-weight:700;
    background:linear-gradient(135deg,#b06cff,#6a35ff);
    padding:12px 20px;
    border-radius:12px;
    white-space:nowrap;
    box-shadow:0 6px 15px rgba(0,0,0,.25);
    text-shadow:0 3px 8px rgba(0,0,0,.35);
}
.input-box{
    display:flex;
    align-items:stretch;
    width:100%;
    height:50px;
    margin-bottom:20px;
    background:rgba(255,255,255,.9);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.input-box span{
    width:55px;
    align-self:stretch;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#8d4dff,#5b2cff);
    color:#ffd700;
    font-size:24px;
}

.input-box input{
    flex:1;
    height:50px;
    padding:0 15px;
    border:none;
    outline:none;
    background:transparent;
    text-align:left;
    font-size:18px;
    font-weight:600;
    color:#222;
}

.input-box input::placeholder{
    color:#555;
    font-weight:600;
}

.user-icon,
.lock-icon{
    width:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#8d4dff,#5b2cff);
    color:#ffd700;
    font-size:22px;
}

.lock-icon{
    color:#ffffff;
}
.user-icon i{
    color:#ffffff !important;
}

.lock-icon i{
    color:#ffffff !important;
}
.input-box{
    transition:all .25s ease;
}

.input-box:focus-within{
    box-shadow:
        0 0 0 3px rgba(141,77,255,.25),
        0 0 18px rgba(141,77,255,.30);
}
.toggle-password{
    width:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#8d4dff,#5b2cff);
    color:#ffffff;
    font-size:17px;
    cursor:pointer;
    transition:all .25s ease;
}

.toggle-password:hover{
    background:linear-gradient(135deg,#9f63ff,#6b3dff);
}
.toggle-password i{
    font-size:15px;
}
.login-error{
    color:#ff3b3b;
    font-size:15px;
    font-weight:700;
    margin-top:12px;
    text-align:center;
    min-height:20px;
}
@keyframes loginShow{

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

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

}
/* SAĞ AÇILAN MENÜ */

.side-menu{
    position:fixed;
    top:0;
    right:-300px;
    width:280px;
    height:100vh;
    background:rgba(43,13,99,.95);
    padding-top:100px;
    z-index:20;
    box-shadow:-5px 0 20px rgba(0,0,0,.4);
    transition:.4s ease;
}

.side-menu a{
    display:block;
    padding:18px 25px;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.side-menu a:hover{
    background:rgba(141,77,255,.5);
}
/* Menü sayfası ortalama */

.menu-logo{
    text-align:center;
    margin-top:50px;
}

.menu-logo h1{
    font-size:55px;
    font-weight:900;
    color:#fff;
}

.menu-logo span{
    color:#8d4dff;
}


.side-menu-page{
    width:320px;
    margin:60px auto;
    text-align:center;
}


.side-menu-page a{
    display:block;
    margin:15px 0;
    padding:18px;
    background:#8d4dff;
    color:#fff;
    text-decoration:none;
    border-radius:15px;
    font-size:18px;
    box-shadow:0 6px 15px rgba(0,0,0,.25);
}
/* ===== MENU OVERLAY ===== */

.menu-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    z-index:99999;
}
.menu-overlay.active{
    display:block;
}


.menu-close{
    color:#fff;
    font-size:28px;
    text-align:right;
    cursor:pointer;
    margin-bottom:20px;
}

.menu-panel a{
    display:block;
    margin:12px 0;
    padding:15px;
    text-align:center;
    text-decoration:none;
    color:#fff;
    background:#8d4dff;
    border-radius:12px;
    font-size:18px;
    transition:.25s;
}

.menu-panel a:hover{
    background:#a15cff;
    transform:translateY(-2px);
}

.menu-button{
    color:#fff;
}
/* MENU SON KATMAN */

#menuOverlay{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    width:100vw !important;
    height:100vh !important;
    z-index:999999 !important;
}

#menuOverlay .menu-panel{
    position:fixed;
    top:80px;
    left:50%;
    transform:translateX(-50%);
    width:340px;
    max-width:90%;
    max-height:80vh;
    overflow-y:auto;
    z-index:1000000;
}

.menu-panel{
    position:fixed !important;
    top:80px !important;
    left:50% !important;
    right:auto !important;
    transform:translateX(-50%) !important;
    z-index:99999 !important;
}

.menu-overlay{
    z-index:99998 !important;
}
/* ORTA ALAN HAFIF MOR DESEN */

.login-box{
    background:
    linear-gradient(135deg,
    rgba(141,77,255,0.08) 25%,
    transparent 25%),
    linear-gradient(225deg,
    rgba(141,77,255,0.08) 25%,
    transparent 25%);

    background-size:40px 40px;
}
.connection-help{
    margin-top:18px;
    color:#fff;
    font-size:15px;
    font-weight:600;
}

.connection-help i{
    margin-right:8px;
    color:#ff2b2b;
}
.alternative-btn{
    display:inline-block;
    margin-top:12px;
    padding:9px 18px;
    background:#8d4dff;
    color:#fff;
    text-decoration:none;
    border-radius:18px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.alternative-btn:hover{
    background:#a15cff;
    transform:translateY(-2px);
}
.google-play-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:12px;
    padding:10px 22px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:20px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.google-play-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:15px;
    padding:14px 30px;
    background:#8d4dff;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-size:17px;
    font-weight:700;
    letter-spacing:.3px;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.35);
}

.google-play-btn i{
    color:#34a853;
    font-size:24px;
}

.google-play-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.45);
}
@media(min-width:601px){

    .connection-help,
    .alternative-btn,
    .google-play-btn{
        display:none;
    }

}

.pc-download-box{
    margin-top:18px;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
}

.mirc-btn,
.pc-download-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:360px;
    padding:12px;
    background:#8d4dff;
    color:#fff;
    text-decoration:none;
    border-radius:22px;
    font-size:17px;
    font-weight:700;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
}

.mirc-btn i{
    color:#fff;
}

.pc-download-btn span:last-child{
    color:#fff;
    font-size:34px;
    font-weight:900;
    margin-left:8px;
    text-shadow:0 2px 6px rgba(0,0,0,.45);
}

.mirc-btn:hover,

.pc-download-btn span{
    color:#fff;
    font-size:22px;
    font-weight:900;
}

@media(max-width:600px){

    .pc-download-box{
        display:none;
    }

}
.page-box{
    width:90%;
    max-width:900px;
    margin:70px auto;
    padding:35px;
    background:rgba(255,255,255,.08);
    border-radius:20px;
    color:#fff;
    backdrop-filter:blur(8px);
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.page-box h1{
    text-align:center;
    margin-bottom:30px;
    color:#fff;
}

.page-box p{
    line-height:1.8;
    margin-bottom:15px;
    font-size:17px;
}

.back-btn{
    display:inline-block;
    padding:12px 25px;
    background:#8d4dff;
    color:#fff;
    text-decoration:none;
    border-radius:25px;
    font-weight:bold;
}

.back-btn:hover{
    background:#a15cff;
}

.characters-image{
    position:fixed;
    left:50%;
    bottom:-20px;
    transform:translateX(-50%);
    z-index:0;
    pointer-events:none;
}

.characters-image img{
    width:900px;
    max-width:none;
}

.mirc-image{
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.mirc-image img{
    width:32px;
    height:32px;
    object-fit:contain;
}
.mirc-logo{
    width:32px;
    height:32px;
    object-fit:contain;
    display:block;
    flex-shrink:0;
}

.mirc-side-icon{
    width:35px;
    height:35px;
    object-fit:contain;
}
.mirc-icon-box{
    width:95px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.mirc-icon-box img{
    width:95px;
    height:auto;
    object-fit:contain;
}

/* ANA SAYFA ALT BÖLÜMLER */

.homepage-content{
    width:90%;
    max-width:900px;
    margin:10px auto 80px;
    text-align:center;
    position:relative;
    z-index:5;
}

.home-section-title{
    background:linear-gradient(135deg,#b06cff,#6a35ff);
    color:#fff;
    padding:18px 20px;
    border-radius:18px;
    font-size:25px;
    font-weight:900;
    letter-spacing:.5px;
    text-align:center;
    box-shadow:
    0 8px 20px rgba(0,0,0,.35),
    0 0 25px rgba(141,77,255,.55);
    text-shadow:
    0 3px 8px rgba(0,0,0,.35);
}

.home-section-content{
    margin-top:20px;
    padding:25px;
    background:rgba(255,255,255,.08);
    color:#fff;
    border-radius:15px;
    font-size:18px;
    line-height:1.7;
    backdrop-filter:blur(8px);
}


@media(max-width:600px){

.homepage-content{
    width:90%;
    margin:10px auto 50px;
    position:relative;
    z-index:5;
}

.home-section-title{
    font-size:20px;
}

.home-section-content{
    font-size:15px;
}

}

/* CANLI RADYO */

.radio-box{
    text-align:center;
}

.radio-status{
    color:#00ff88;
    font-size:16px;
    font-weight:700;
    margin-bottom:15px;
}

.radio-title{
    font-size:26px;
    font-weight:900;
    color:#fff;
    margin-bottom:20px;
    text-shadow:
    0 3px 8px rgba(0,0,0,.35);
}

.radio-play{
    width:160px;
    padding:12px;
    border:none;
    border-radius:30px;
    background:linear-gradient(135deg,#b06cff,#6a35ff);
    color:#fff;
    font-size:20px;
    font-weight:800;
    cursor:pointer;
    box-shadow:
    0 8px 20px rgba(0,0,0,.35),
    0 0 20px rgba(141,77,255,.55);
    transition:.3s;
}

.radio-play:hover{
    transform:scale(1.08);
}

.radio-song{
    margin-top:20px;
    padding:12px;
    background:rgba(255,255,255,.12);
    border-radius:15px;
    color:#fff;
    font-size:15px;
}
.radio-status{
    color:#00ff88;
    font-size:16px;
    font-weight:700;
    margin-bottom:15px;
    animation:radioPulse 1.5s infinite;
}

@keyframes radioPulse{

    0%{
        opacity:1;
    }

    50%{
        opacity:.5;
    }

    100%{
        opacity:1;
    }

}
/* SUNUCU DURUMU */

.server-box{
    text-align:center;
}

.server-online{
    color:#00ff88;
    font-size:18px;
    font-weight:900;
    margin-bottom:20px;
    animation:serverPulse 1.5s infinite;
}

.server-info{
    margin:12px auto;
    padding:12px;
    max-width:500px;
    background:rgba(255,255,255,.12);
    border-radius:15px;
    color:#fff;
    font-size:17px;
    backdrop-filter:blur(8px);
}

@keyframes serverPulse{

    0%{
        opacity:1;
    }

    50%{
        opacity:.5;
    }

    100%{
        opacity:1;
    }

}
/* AKTIF KULLANICILAR */

.users-box{
    text-align:center;
}

.users-online{
    color:#00ff88;
    font-size:18px;
    font-weight:900;
    margin-bottom:18px;
    animation:usersPulse 1.5s infinite;
}

.user-count{
    color:#fff;
    font-size:22px;
    font-weight:800;
    margin-bottom:15px;
}

.user-info{
    color:#fff;
    padding:12px;
    background:rgba(255,255,255,.12);
    border-radius:15px;
    margin-bottom:20px;
    backdrop-filter:blur(8px);
}

.join-chat-btn{
    width:180px;
    padding:12px;
    border:none;
    border-radius:30px;
    background:linear-gradient(135deg,#b06cff,#6a35ff);
    color:#fff;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
    box-shadow:
    0 8px 20px rgba(0,0,0,.35),
    0 0 20px rgba(141,77,255,.55);
    transition:.3s;
}

.join-chat-btn:hover{
    transform:scale(1.08);
}

@keyframes usersPulse{

    0%{
        opacity:1;
    }

    50%{
        opacity:.5;
    }

    100%{
        opacity:1;
    }

}
/* DUYURULAR */

.announcements-box{
    text-align:center;
}

.announcement-item{
    margin-bottom:18px;
    padding:18px;
    background:rgba(255,255,255,.12);
    border-radius:18px;
    color:#fff;
    font-size:17px;
    line-height:1.7;
    backdrop-filter:blur(8px);
    box-shadow:
    0 8px 20px rgba(0,0,0,.25);
}

.announcement-item strong{
    color:#fff;
    font-size:20px;
    font-weight:900;
}
/* MAKALELER */

.articles-box{
    text-align:center;
}

.article-item{
    margin-bottom:18px;
    padding:18px;
    background:rgba(255,255,255,.12);
    border-radius:18px;
    color:#fff;
    font-size:17px;
    line-height:1.7;
    backdrop-filter:blur(8px);
    box-shadow:
    0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
}

.article-item:hover{
    transform:translateY(-5px);
    box-shadow:
    0 12px 25px rgba(0,0,0,.35),
    0 0 20px rgba(141,77,255,.45);
}

.article-item strong{
    color:#fff;
    font-size:20px;
    font-weight:900;
}

/* FOOTER */

.site-footer{
    width:90%;
    max-width:900px;
    margin:80px auto 30px;
    padding:30px;
    text-align:center;
    background:rgba(255,255,255,.12);
    border-radius:20px;
    backdrop-filter:blur(10px);
    box-shadow:
    0 10px 25px rgba(0,0,0,.35),
    0 0 25px rgba(141,77,255,.45);
}

.footer-logo{
    font-size:32px;
    font-weight:900;
    color:#fff;
    margin-bottom:20px;
}

.footer-logo span{
    color:#b06cff;
}

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

.footer-links a{
    color:#fff;
    text-decoration:none;
    margin:0 10px;
    font-weight:700;
}

.footer-links a:hover{
    color:#b06cff;
}

.footer-copy{
    color:#fff;
    font-size:14px;
    opacity:.8;
}
.footer-copy strong{
    color:#b06cff;
    font-size:18px;
    font-weight:900;
    text-shadow:
    0 0 10px rgba(176,108,255,.8);
}
