@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #030305;
    color: #e2e8f0;
    overflow-x: hidden;
    position: relative;
}

body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.08), transparent 70%);
    top: -200px;
    left: -200px;
}

body::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.05), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

header {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 30px;
    z-index: 1000;
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    padding: 16px 36px;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: all 0.4s ease;
}

nav:hover {
    background: rgba(15, 15, 18, 0.8);
    border-color: rgba(0, 198, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 198, 255, 0.1);
}

.logo {
    font-size: 26px;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(270deg, #00c6ff, #0072ff, #00c6ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    animation: gradientShift 4s ease infinite;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #8b949e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: #00c6ff;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-login, .btn-logout {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.btn-login {
    background: #5865F2;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.25);
}

.btn-logout {
    background: #ff416c;
    box-shadow: 0 8px 20px rgba(255, 65, 108, 0.25);
}

.btn-login::before, .btn-logout::before, .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-login:hover, .btn-logout:hover {
    transform: translateY(-3px);
}

.btn-login:hover {
    box-shadow: 0 12px 25px rgba(88, 101, 242, 0.4);
}

.btn-logout:hover {
    box-shadow: 0 12px 25px rgba(255, 65, 108, 0.4);
}

.btn-login:hover::before, .btn-logout:hover::before, .btn-primary:hover::before {
    left: 100%;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-content h1 span {
    background: linear-gradient(270deg, #00f2fe, #4facfe, #00f2fe);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

.hero-content p {
    font-size: 22px;
    max-width: 680px;
    margin: 0 auto 45px;
    color: #8b949e;
    line-height: 1.6;
}

.btn-primary {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    padding: 18px 46px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 114, 255, 0.5);
}

.section {
    padding: 140px 5%;
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 80px;
    background: linear-gradient(180deg, #ffffff, #8b949e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.feature-card {
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 55px 35px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.features-grid .feature-card:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 28px;
    box-shadow: 0 0 0 0 rgba(0, 198, 255, 0);
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 198, 255, 0.3);
    background: rgba(20, 20, 24, 0.8);
}

.feature-card:hover::after {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 198, 255, 0.05);
}

.feature-icon {
    font-size: 54px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) translateY(-5px);
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 700;
}

.feature-card p {
    color: #8b949e;
    line-height: 1.7;
    font-size: 16px;
}

.about {
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.2), transparent);
}

.about-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
    padding: 40px 0;
}

.about-content p {
    font-size: 20px;
    color: #8b949e;
    margin-bottom: 30px;
    line-height: 1.9;
}

footer {
    text-align: center;
    padding: 50px;
    color: #4b5563;
    position: relative;
    font-weight: 600;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
}

.dropdown-container {
    position: relative;
    cursor: pointer;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px 6px 6px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 198, 255, 0.4);
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.user-profile:hover .user-avatar {
    border-color: #00c6ff;
}

.user-name {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}

.dropdown-icon {
    font-size: 12px;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: rgba(15, 15, 18, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    list-style: none;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: #a0aec0;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown-menu li a i {
    font-size: 16px;
    width: 20px;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.dropdown-menu li a.logout-link:hover {
    background: rgba(255, 65, 108, 0.1);
    color: #ff416c;
}

.cart-icon {
    position: relative;
    font-size: 20px;
    color: #a0aec0;
    transition: color 0.3s;
}

.cart-icon:hover { color: #fff; }

.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #ff416c;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 65, 108, 0.5);
}

.cart-dropdown {
    width: 320px;
    right: -20px;
    padding: 20px;
}

.cart-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-list {
    list-style: none;
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.cart-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-info { display: flex; flex-direction: column; }
.cart-item-name { color: #fff; font-size: 14px; font-weight: bold; }
.cart-item-mod { color: #8b949e; font-size: 12px; max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { color: #00c6ff; font-weight: bold; font-size: 14px; }

.cart-total {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.empty-cart { text-align: center; color: #8b949e; font-size: 14px; padding: 20px 0; }

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.stock-badge {
    display: inline-block;
    background: rgba(88, 101, 242, 0.2);
    color: #7289da;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    border: 1px solid rgba(88, 101, 242, 0.4);
}

.stock-critical {
    background: rgba(255, 65, 108, 0.2);
    color: #ff416c;
    border-color: rgba(255, 65, 108, 0.4);
}

.btn-disabled { 
    background: #30363d; 
    color: #8b949e; 
    cursor: not-allowed; 
    text-align: center; 
    padding: 12px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: bold; 
    display: block;
}

.horizontal-card-wrapper {
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.horizontal-card-wrapper:hover {
    border-color: rgba(0, 198, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(0, 198, 255, 0.05);
}

.horizontal-card {
    display: flex;
    align-items: center;
    padding: 30px;
}

.card-info { flex: 2; padding-right: 30px; border-right: 1px solid rgba(255,255,255,0.05); }
.card-features { flex: 2; padding: 0 30px; border-right: 1px solid rgba(255,255,255,0.05); }
.card-action { flex: 1; padding-left: 30px; display: flex; flex-direction: column; justify-content: center; gap: 15px; }

.plan-name { font-size: 26px; color: #fff; font-weight: 700; margin-bottom: 10px; }
.plan-price { font-size: 42px; font-weight: 800; color: #00c6ff; margin-bottom: 10px; }
.plan-price span { font-size: 16px; color: #8b949e; font-weight: 600; }
.plan-desc { color: #8b949e; font-size: 14px; line-height: 1.6; }

.plan-features { list-style: none; margin: 0; }
.plan-features li { color: #a0aec0; margin-bottom: 14px; font-size: 14px; display: flex; align-items: center; gap: 12px; }
.plan-features li i { color: #00c6ff; font-size: 16px; width: 20px; text-align: center; }

.mod-section {
    display: none;
    padding: 0 30px 30px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(10, 10, 12, 0.3);
    animation: slideDownFade 0.4s ease forwards;
}

.mod-section.active { display: block; }

.mod-title { color: #fff; font-size: 18px; margin: 25px 0 15px 0; font-weight: 600; }

.mod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.mod-box {
    background: rgba(20, 20, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mod-box input[type="checkbox"] { display: none; }

.mod-box-content { display: flex; flex-direction: column; gap: 6px; }

.mod-box-title { color: #fff; font-size: 15px; font-weight: 600; }
.mod-box-desc { color: #8b949e; font-size: 13px; line-height: 1.4; }
.mod-price { margin-top: 10px; color: #00c6ff; font-weight: 700; font-size: 14px; }
.mod-price span { font-size: 11px; color: #718096; font-weight: 600; text-transform: uppercase; }

.mod-box:hover {
    background: rgba(30, 30, 35, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.mod-box:has(input[type="checkbox"]:checked) {
    background: rgba(0, 198, 255, 0.1);
    border-color: #00c6ff;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
}

.mod-box.vip-mod:has(input[type="checkbox"]:checked) {
    background: rgba(88, 101, 242, 0.15);
    border-color: #5865F2;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}

.mod-box:has(input[type="checkbox"]:checked)::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 16px;
    right: 16px;
    color: #00c6ff;
    font-size: 16px;
}

.mod-box.vip-mod:has(input[type="checkbox"]:checked)::after {
    color: #5865F2;
}

.btn-select-server {
    background: transparent;
    border: 1px solid #00c6ff;
    color: #00c6ff;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    width: 100%;
}

.btn-select-server:hover {
    background: rgba(0, 198, 255, 0.1);
}

.cart-action-row {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.4);
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-notification.show { transform: translateX(0); }
.toast-notification i { font-size: 20px; }

.cart-action-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-remove-item {
    background: rgba(255, 65, 108, 0.1);
    color: #ff416c;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-item:hover {
    background: #ff416c;
    color: #fff;
    transform: scale(1.05);
}

.custom-mod-banner {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(0, 198, 255, 0.05));
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.custom-mod-banner i {
    font-size: 45px;
    color: #5865F2;
    margin-bottom: 20px;
}

.custom-mod-title {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.custom-mod-text {
    color: #a0aec0;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

.btn-ticket {
    display: inline-block;
    background: linear-gradient(45deg, #5865F2, #7289da);
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.btn-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(88, 101, 242, 0.5);
}

@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.profile-card {
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #00c6ff;
    padding: 5px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
}

.profile-name {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-id {
    color: #8b949e;
    font-size: 13px;
    margin-bottom: 25px;
}

.profile-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-value {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.stat-label {
    color: #8b949e;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dashboard-heading {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.server-card {
    background: rgba(20, 20, 24, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.server-card:hover {
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transform: translateY(-5px);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.server-title-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.server-icon {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.server-name {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.server-ip {
    color: #8b949e;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-active {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.status-pending {
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.status-suspended {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.server-resources {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.resource-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resource-label {
    display: flex;
    justify-content: space-between;
    color: #a0aec0;
    font-size: 13px;
    font-weight: 600;
}

.resource-label span:last-child {
    color: #fff;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.cpu-fill {
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    width: 15%;
}

.ram-fill {
    background: linear-gradient(90deg, #5865F2, #7289da);
    width: 45%;
}

.server-actions {
    display: flex;
    gap: 15px;
}

.btn-panel {
    background: transparent;
    border: 1px solid #5865F2;
    color: #5865F2;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-panel:hover {
    background: rgba(88, 101, 242, 0.1);
}

.btn-manage {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-manage:hover {
    background: rgba(255,255,255,0.1);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(15, 15, 18, 0.4);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 20px;
}

.empty-state i {
    font-size: 50px;
    color: #30363d;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.empty-state p {
    color: #8b949e;
    margin-bottom: 25px;
}

@media (max-width: 900px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    .profile-card {
        position: relative;
        top: 0;
    }
}

.policy-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-card {
    background: rgba(15, 15, 18, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 198, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.policy-card.alert-card::before {
    background: radial-gradient(circle at top right, rgba(255, 65, 108, 0.1), transparent 60%);
}

.policy-card::after {
    content: attr(data-num);
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 150px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
}

.policy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 198, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(0, 198, 255, 0.05);
}

.policy-card.alert-card:hover {
    border-color: rgba(255, 65, 108, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 65, 108, 0.05);
}

.policy-card:hover::before {
    opacity: 1;
}

.policy-card:hover::after {
    color: rgba(255, 255, 255, 0.04);
    transform: scale(1.1) rotate(-5deg);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.policy-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 198, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 198, 255, 0.2);
}

.alert-card .policy-icon-wrapper {
    background: rgba(255, 65, 108, 0.1);
    border-color: rgba(255, 65, 108, 0.2);
}

.policy-icon {
    font-size: 26px;
    color: #00c6ff;
}

.alert-card .policy-icon {
    color: #ff416c;
}

.policy-card h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.policy-content {
    flex-grow: 1;
}

.policy-content p {
    color: #8b949e;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content p:last-child {
    margin-bottom: 0;
}

.policy-content strong {
    color: #e2e8f0;
}