@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Russo+One&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background: url('https://images.unsplash.com/photo-1607513746994-51f730a44832?q=80&w=1920&auto=format&fit=crop') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 5, 5, 0.9);
    z-index: -1;
}

h1, h2, h3 {
    font-family: 'Russo One', sans-serif;
    letter-spacing: 1px;
}

header {
    background: rgba(15, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff0033;
    position: sticky;
    top: 0;
    z-index: 100;
}

header h2 {
    color: #ff0033;
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(255, 0, 51, 0.6);
    text-transform: uppercase;
}

header h2 span { color: #fff; text-shadow: none; }

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

header nav a:hover {
    color: #ff0033;
    text-shadow: 0 0 10px rgba(255, 0, 51, 0.6);
}

.hero {
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 0, 51, 0.1);
    color: #ff0033;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #ff0033;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.6), 0 5px 0px #990000;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-ip { 
    background: #ff0033; 
    color: #fff; 
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
}
.btn-ip:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 0 25px rgba(255, 0, 51, 0.8); 
}

.btn-discord { 
    background: #1a1a1a; 
    color: #fff; 
    border: 1px solid #333;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
.btn-discord:hover { 
    background: #2a2a2a;
    border-color: #5865F2; 
    transform: translateY(-3px); 
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.5); 
}

.btn-vote { 
    background: transparent; 
    color: #ff0033; 
    border: 2px solid #ff0033;
}
.btn-vote:hover { 
    background: rgba(255, 0, 51, 0.1); 
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4); 
    transform: translateY(-3px);
}

.btn-buy { 
    background: #ff0033; 
    color: #fff; 
    width: 100%; 
    margin-top: 20px; 
}
.btn-buy:hover { 
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.7); 
    background: #e6002e;
}

/* --- Tombol Khusus Shard (Warna Ungu Kristal) --- */
.btn-shard { background: #b026ff; }
.btn-shard:hover { box-shadow: 0 0 20px rgba(176, 38, 255, 0.7); background: #941cd9; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-title span { color: #ff0033; }

/* --- Judul Khusus Shard --- */
.title-shard span { color: #b026ff; text-shadow: 0 0 15px rgba(176,38,255,0.5); }

.features-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.glass-card {
    background: rgba(20, 0, 0, 0.5); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 51, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 0, 0, 0.7);
    border-color: rgba(255, 0, 51, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff0033;
    text-shadow: 0 0 15px rgba(255, 0, 51, 0.5);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.glass-card p {
    color: #aaa;
    font-size: 0.95rem;
}

.gold-card { border-top: 4px solid #ffcc00; }
.gold-card:hover { border-color: #ffcc00; box-shadow: 0 10px 30px rgba(255, 204, 0, 0.15); }
.gold-card h3 { color: #ffcc00; text-shadow: 0 0 10px rgba(255,204,0,0.3); }

.bot-card { border-top: 4px solid #ff0033; }
.bot-card:hover { border-color: #ff0033; box-shadow: 0 10px 30px rgba(255, 0, 51, 0.2); }
.bot-card h3 { color: #ff0033; text-shadow: 0 0 10px rgba(255,0,51,0.3); }

/* --- Kartu Khusus Shard --- */
.shard-card { border-top: 4px solid #b026ff; text-align: center; }
.shard-card:hover { border-color: #b026ff; box-shadow: 0 10px 30px rgba(176, 38, 255, 0.2); background: rgba(20, 0, 30, 0.6); }
.shard-card h3 { color: #b026ff; text-shadow: 0 0 10px rgba(176, 38, 255, 0.4); }

/* BAGIAN YANG DIREVISI UNTUK FIX UKURAN GAMBAR */
.shard-image { 
    width: 100%; 
    height: 150px; 
    object-fit: contain; 
    border-radius: 10px; 
    margin-bottom: 20px; 
    padding: 15px; 
    background: rgba(0, 0, 0, 0.3); 
    border: 2px solid rgba(176, 38, 255, 0.3); 
}

.price-tag {
    font-size: 2.5rem;
    font-family: 'Russo One', sans-serif;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-tag small {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #888;
}

.benefits-list { list-style: none; }
.benefits-list li {
    margin-bottom: 12px;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefits-list li i { color: #ff0033; }

.modern-alert {
    background: linear-gradient(90deg, rgba(255, 0, 51, 0.15) 0%, transparent 100%);
    border-left: 4px solid #ff0033;
    padding: 20px 25px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 40px;
    color: #ddd;
    font-size: 1rem;
}

.table-wrapper {
    background: rgba(20, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,0,51,0.2);
    overflow-x: auto;
    backdrop-filter: blur(10px);
}

table { width: 100%; border-collapse: collapse; }
table, th, td { border: none; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); }
th { background-color: #990000; color: white; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
tr:hover { background-color: rgba(255,0,51,0.05); }