*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Vazirmatn',sans-serif;
    background:#121212;
    color:#fff;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.navbar{
    height:80px;
    background:#1a1a1a;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 40px;

    border-bottom:1px solid #2b2b2b;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:#009dff;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.nav-links a:hover{
    color:#009dff;
}
.auth-buttons{
    display:flex;
    gap:10px;
}

.btn-login,
.btn-register{
    text-decoration:none;
    padding:10px 18px;
    border-radius:10px;
}

.btn-login{
    border:1px solid #009dff;
    color:#009dff;
}

.btn-register{
    background:#009dff;
    color:white;
}

.hero{
    min-height:80vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero h1{
    font-size:70px;
    font-weight:800;
}

.hero p{
    margin-top:15px;
    color:#aaa;
    font-size:20px;
}

.hero-button{
    margin-top:30px;

    background:#009dff;

    color:white;

    text-decoration:none;

    padding:15px 35px;

    border-radius:12px;
}

.footer{
    background:#1a1a1a;
    text-align:center;
    padding:25px;
    margin-top:50px;
}
.hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    max-width:800px;
}

.hero h1{
    font-size:80px;
    font-weight:800;
    color:#009dff;
}

.hero p{
    margin-top:20px;
    color:#bdbdbd;
    font-size:20px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.btn-main{
    background:#009dff;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:12px;
}

.btn-outline{
    border:1px solid #009dff;
    color:#009dff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:12px;
}

.stats{
    width:90%;
    margin:80px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:#1a1a1a;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.stat-card h2{
    color:#009dff;
    font-size:40px;
}

.about{
    width:90%;
    margin:100px auto;
    text-align:center;
}

.about h2{
    margin-bottom:20px;
}

.about p{
    color:#bdbdbd;
    line-height:2;
}

.vip-section,
.news-section{
    width:90%;
    margin:100px auto;
}

.vip-section h2,
.news-section h2{
    text-align:center;
    margin-bottom:40px;
}

.vip-grid,
.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.vip-card,
.news-card{
    background:#1a1a1a;
    padding:30px;
    border-radius:15px;
}

.vip-card h3{
    color:#009dff;
}

.cta-section{
    text-align:center;
    margin:120px auto;
}

.cta-section p{
    margin:20px 0;
    color:#bdbdbd;
}
.auth-container{
    min-height:85vh;

    display:flex;
    justify-content:center;
    align-items:center;
}

.auth-card{

    width:100%;
    max-width:500px;

    background:#1a1a1a;

    padding:40px;

    border-radius:20px;

    border:1px solid #2c2c2c;
}

.auth-card h1{

    text-align:center;

    margin-bottom:30px;

    color:#009dff;
}

.form-group{

    margin-bottom:20px;
}

.form-group label{

    display:block;

    margin-bottom:8px;
}

.form-group input{

    width:100%;

    background:#252525;

    border:none;

    color:white;

    padding:14px;

    border-radius:10px;

    outline:none;
}

.form-group input:focus{

    border:1px solid #009dff;
}

.btn-auth{

    width:100%;

    background:#009dff;

    border:none;

    color:white;

    padding:15px;

    border-radius:10px;

    cursor:pointer;

    font-size:16px;
}

.auth-links{

    text-align:center;

    margin-top:20px;
}

.auth-links a{

    color:#009dff;

    text-decoration:none;
}
.dashboard-container{
    padding:40px 0;
}

.dashboard-header{
    margin-bottom:30px;
}

.dashboard-header h1{
    font-size:32px;
    margin-bottom:10px;
}

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.dashboard-card{
    background:#151515;
    border:1px solid rgba(0,170,255,.2);
    border-radius:15px;
    padding:25px;
    transition:.3s;
}

.dashboard-card:hover{
    transform:translateY(-5px);
}

.dashboard-card h3{
    margin-bottom:15px;
}

.dashboard-card span,
.dashboard-card a{
    font-size:18px;
}
/* SUNNYLAND UCP */

.sl-dashboard{
    display:flex;
    gap:30px;
    margin-top:30px;
    align-items:flex-start;
}

.sl-sidebar{
    width:280px;
    min-width:280px;
    background:#0f172a;
    border-radius:20px;
    padding:25px;
}

.sl-profile{
    text-align:center;
    margin-bottom:25px;
}

.sl-avatar{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#009dff;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:bold;
    margin-bottom:15px;
}

.sl-menu{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.sl-menu a{
    display:block;
    padding:14px;
    border-radius:12px;
    background:#1e293b;
    color:white;
    text-decoration:none;
}

.sl-menu a:hover{
    background:#009dff;
}

.sl-content{
    flex:1;
}

.sl-welcome,
.sl-panel,
.sl-card{
    background:#0f172a;
    border-radius:20px;
    padding:25px;
}

.sl-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:20px 0;
}

.sl-table{
    width:100%;
    border-collapse:collapse;
}

.sl-table td{
    padding:15px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

@media (max-width:992px){

    .sl-dashboard{
        flex-direction:column;
    }

    .sl-sidebar{
        width:100%;
        min-width:100%;
    }

}
/* PROFILE PAGE */

.profile-wrapper{
    width:100%;
    margin:30px 0;
}

.profile-banner{
    background:#111827;
    border-radius:20px;
    padding:30px;
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
    border:1px solid rgba(59,130,246,.2);
}

.profile-avatar{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#2563eb;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    font-weight:bold;
    color:#fff;
}

.profile-info h1{
    margin-bottom:8px;
}

.profile-info span{
    color:#60a5fa;
}

.profile-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.profile-card{
    background:#111827;
    border-radius:20px;
    padding:25px;
    border:1px solid rgba(59,130,246,.15);
}

.profile-card h2{
    margin-bottom:20px;
    color:#60a5fa;
}

.profile-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.profile-row:last-child{
    border-bottom:none;
}

.profile-row strong{
    color:#e5e7eb;
}

.profile-row span{
    color:#9ca3af;
}

@media(max-width:768px){

    .profile-banner{
        flex-direction:column;
        text-align:center;
    }

    .profile-grid{
        grid-template-columns:1fr;
    }

}
.ticket-create{
    padding:40px 0;
}

.ticket-box{
    background:#0f172a;
    border-radius:20px;
    padding:30px;
    max-width:900px;
    margin:auto;
}

.ticket-box h1{
    margin-bottom:25px;
}

.ticket-group{
    margin-bottom:20px;
}

.ticket-group label{
    display:block;
    margin-bottom:10px;
}

.ticket-group input,
.ticket-group select,
.ticket-group textarea{
    width:100%;
    background:#111827;
    border:1px solid rgba(255,255,255,.1);
    color:white;
    border-radius:12px;
    padding:15px;
}

.ticket-group textarea{
    resize:vertical;
}

.ticket-btn{
    background:#2563eb;
    border:none;
    color:white;
    padding:15px 30px;
    border-radius:12px;
    cursor:pointer;
}

.ticket-alert{
    background:#16a34a;
    padding:15px;
    border-radius:12px;
    margin-bottom:20px;
}
.sl-table{
    width:100%;
    border-collapse:collapse;
}

.sl-table th,
.sl-table td{
    padding:15px;
    text-align:right;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.sl-table th{
    background:#111827;
}

.sl-table a{
    color:#60a5fa;
    text-decoration:none;
    font-weight:600;
}
.ticket-wrapper{
    max-width:1200px;
    margin:30px auto;
}

.ticket-header{
    background:#0f172a;
    border-radius:20px;
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.ticket-header h1{
    margin-bottom:10px;
}

.ticket-status{
    background:#2563eb;
    padding:10px 18px;
    border-radius:12px;
    font-weight:700;
}

.ticket-info{
    background:#111827;
    border-radius:20px;
    padding:20px;
    display:flex;
    gap:30px;
    margin-bottom:25px;
}

.ticket-chat{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.chat-user{
    align-self:flex-end;
    max-width:70%;
    background:#2563eb;
    padding:20px;
    border-radius:20px 20px 5px 20px;
}

.chat-admin{
    align-self:flex-start;
    max-width:70%;
    background:#111827;
    padding:20px;
    border-radius:20px 20px 20px 5px;
}

.chat-name{
    font-weight:bold;
    margin-bottom:10px;
}

.chat-time{
    margin-top:12px;
    opacity:.7;
    font-size:13px;
}

.ticket-reply{
    background:#0f172a;
    border-radius:20px;
    padding:25px;
    margin-top:25px;
}

.ticket-reply textarea{
    width:100%;
    min-height:180px;
    background:#111827;
    border:1px solid rgba(255,255,255,.1);
    color:white;
    padding:15px;
    border-radius:15px;
    resize:vertical;
}

.ticket-send{
    margin-top:15px;
    background:#2563eb;
    color:white;
    border:none;
    padding:14px 30px;
    border-radius:12px;
    cursor:pointer;
    font-weight:700;
}
.admin-layout{
    display:flex;
    gap:30px;
    margin-top:30px;
}

.admin-sidebar{
    width:280px;
    background:#0f172a;
    border-radius:20px;
    padding:25px;
}

.admin-logo{
    font-size:28px;
    font-weight:800;
    color:#3b82f6;
    margin-bottom:30px;
    text-align:center;
}

.admin-menu{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.admin-menu a{
    text-decoration:none;
    color:white;
    background:#111827;
    padding:14px;
    border-radius:12px;
    transition:.3s;
}

.admin-menu a:hover{
    background:#2563eb;
}

.admin-content{
    flex:1;
}

.admin-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:25px;
}

.admin-card{
    background:#0f172a;
    border-radius:20px;
    padding:25px;
}

.admin-card h3{
    margin-bottom:12px;
    color:#60a5fa;
}
.admin-users{
    padding:30px;
}

.admin-search{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.admin-search input{
    flex:1;
    background:#111827;
    color:white;
    border:none;
    padding:14px;
    border-radius:12px;
}

.admin-search button{
    background:#2563eb;
    color:white;
    border:none;
    padding:14px 25px;
    border-radius:12px;
    cursor:pointer;
}

.admin-table{
    overflow-x:auto;
}

.admin-table table{
    width:100%;
    border-collapse:collapse;
}

.admin-table th,
.admin-table td{
    padding:15px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.admin-table th{
    background:#0f172a;
}

.btn-view{
    background:#2563eb;
    color:white;
    padding:8px 15px;
    border-radius:8px;
    text-decoration:none;
}
.admin-user-view{
    padding:30px;
}

.admin-user-card{
    background:#0f172a;
    border-radius:20px;
    padding:30px;
}

.admin-user-card h1{
    margin-bottom:25px;
    color:#60a5fa;
}

.admin-user-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:15px;
}

.admin-user-info div{
    background:#111827;
    padding:15px;
    border-radius:12px;
}

.admin-actions{
    display:flex;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.admin-btn{
    padding:12px 20px;
    border-radius:12px;
    text-decoration:none;
    color:white;
}

.admin-btn.primary{
    background:#2563eb;
}

.admin-btn.success{
    background:#16a34a;
}

.admin-btn.danger{
    background:#dc2626;
}
.ticket-chat{
    max-width:1000px;
    margin:auto;
}

.chat-user,
.chat-admin{
    padding:15px;
    border-radius:15px;
    margin:15px 0;
    max-width:100%;
    overflow-wrap:break-word;
    word-wrap:break-word;
    word-break:break-word;
    white-space:pre-wrap;
}

.chat-user{
    background:#0f172a;
}

.chat-admin{
    background:#1e3a8a;
}

.chat-user strong,
.chat-admin strong{
    display:block;
    margin-bottom:10px;
}
.shop-categories{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.shop-categories a{
    background:#111827;
    color:#fff;
    text-decoration:none;
    padding:40px;
    text-align:center;
    border-radius:15px;
    font-size:22px;
    transition:.3s;
}

.shop-categories a:hover{
    transform:translateY(-5px);
}
.shop-container{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:25px;
}

.shop-card{
    background:#111827;
    border-radius:15px;
    overflow:hidden;
    padding:15px;
}

.shop-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
}

.shop-card h3{
    margin-top:15px;
}

.shop-price{
    font-size:22px;
    font-weight:bold;
    margin-top:15px;
}

.shop-buy{
    display:block;
    margin-top:15px;
    background:#2563eb;
    color:white;
    text-align:center;
    padding:12px;
    border-radius:10px;
    text-decoration:none;
}
.product-page{
    max-width:900px;
    margin:auto;
}

.product-image{
    width:100%;
    border-radius:15px;
}

.product-price{
    font-size:28px;
    font-weight:bold;
    margin-top:20px;
}

.buy-button{
    display:inline-block;
    margin-top:20px;
    padding:15px 30px;
    background:#16a34a;
    color:white;
    text-decoration:none;
    border-radius:12px;
}
