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

body {
    background-color: #191726;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #e2e2f0;
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(55, 57, 112, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
    position: relative;
    z-index: 2;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 1rem 0;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.logo-wrapper img {
    height: 68px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.2s ease;
}

.logo-wrapper img:hover {
    transform: scale(1.02);
}

h1 {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #a7a9e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.slogan {
    font-size: 1.2rem;
    color: #8f92c5;
    border-top: 1px solid #2a2c4e;
    border-bottom: 1px solid #2a2c4e;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    backdrop-filter: blur(4px);
    font-weight: 500;
}

.badge-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: #2d2f5e;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #c4c7ff;
    border: 1px solid #3f4180;
}

/* Pricing Cards */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0 3rem;
}

.plan-card {
    background: #1e1c30;
    border-radius: 28px;
    padding: 1.8rem 1.8rem 2rem;
    width: 100%;
    max-width: 400px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #373970;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: #5d60b0;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
}

.plan-card.prime {
    border-top: 3px solid #c9aeff;
    background: linear-gradient(145deg, #1f1d33 0%, #191726 100%);
}

.prime-ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #7c6bc2;
    color: #0c0b16;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.plan-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.light {
    font-weight: 400;
    color: #999bdd;
    font-size: 0.9rem;
}

.price-tag {
    background: #0b0a17;
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    margin: 0.5rem 0;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
}
.price-num {
    font-size: 2.4rem;
    font-weight: 800;
}
.period {
    font-size: 0.85rem;
    color: #b7b9e8;
}

.annual-price {
    font-size: 0.85rem;
    color: #9da0d6;
    margin: 0.5rem 0 1rem;
}
.save {
    color: #8effc1;
    font-size: 0.7rem;
    background: #2a3a2e;
    padding: 0.1rem 0.4rem;
    border-radius: 20px;
}

.features {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0;
}

.features li {
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features li::before {
    content: "▹";
    color: #898bdb;
    font-size: 1rem;
}

.buy-btn {
    width: 100%;
    background: #373970;
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.9rem 0;
    border-radius: 60px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    letter-spacing: 0.5px;
    border: 1px solid #5a5c9e;
}

.buy-btn:hover {
    background: #4a4c8c;
    transform: scale(0.98);
}

.prime-btn {
    background: #604f9e;
    border-color: #9a86da;
}

.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 3rem 0;
    justify-content: center;
}

.info-card {
    background: rgba(30, 28, 48, 0.7);
    border: 1px solid #373970;
    border-radius: 20px;
    padding: 1.5rem;
    flex: 1;
    min-width: 250px;
    backdrop-filter: blur(4px);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #c4c7ff;
}

.info-card p {
    font-size: 0.85rem;
    color: #a0a3d4;
    line-height: 1.5;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 7, 18, 0.95);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #1b1930;
    border: 1px solid #44467c;
    border-radius: 32px;
    max-width: 520px;
    width: 90%;
    padding: 2rem 1.8rem;
    position: relative;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: #9092cc;
    transition: color 0.15s;
}

.close-modal:hover {
    color: white;
}

.modal-content h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-sub {
    color: #a9abdf;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.input-group {
    margin-bottom: 1.2rem;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    color: #bcbef5;
}

.input-group input, .plan-selector select {
    width: 100%;
    background: #10101f;
    border: 1px solid #35376b;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: 0.2s;
}

.input-group input:focus, .plan-selector select:focus {
    border-color: #8b7cd9;
    box-shadow: 0 0 0 2px rgba(114, 93, 186, 0.3);
}

.row-flex {
    display: flex;
    gap: 1rem;
}

.half {
    flex: 1;
}

.plan-selector {
    margin: 1rem 0 1rem;
}

.plan-selector select {
    margin-top: 0.3rem;
    background: #10101f;
    cursor: pointer;
}

.payment-amount {
    background: #0a091b;
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    margin: 1rem 0;
    font-weight: 600;
    color: #c4ffb0;
    font-size: 1.1rem;
}

.generate-key-btn {
    background: #2e2d62;
    border: none;
    width: 100%;
    padding: 0.9rem;
    border-radius: 60px;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    margin-top: 0.5rem;
}

.generate-key-btn:hover {
    background: #45477b;
}

.key-result {
    margin-top: 1.5rem;
    background: #0a091b;
    border-radius: 20px;
    padding: 1.2rem;
    text-align: center;
    border-left: 4px solid #70ffb0;
}

.key-success-icon {
    font-size: 2rem;
    color: #70ffb0;
    margin-bottom: 0.5rem;
}

.key-result p {
    margin-bottom: 0.5rem;
}

.key-label {
    font-size: 0.8rem;
    color: #a0a3d4;
    margin-top: 0.5rem;
}

.key-result code {
    display: block;
    background: #00000055;
    padding: 0.7rem;
    border-radius: 16px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.8rem;
    word-break: break-all;
    margin: 0.8rem 0;
    color: #c6ffbc;
    border: 1px solid #3c3e6e;
}

.copy-btn {
    background: #2b2c52;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.15s;
}

.copy-btn:hover {
    background: #3f4180;
}

.key-warning {
    font-size: 0.7rem;
    color: #797baa;
    margin-top: 0.8rem;
}

.footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.75rem;
    color: #696b99;
    border-top: 1px solid #2a2c4a;
    padding-top: 1.8rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin: 0.8rem 0;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

.copyright {
    margin-top: 0.5rem;
    font-size: 0.7rem;
}

.hidden {
    display: none;
}

.ban-stat-badge {
    background: linear-gradient(135deg, #2d1f3a 0%, #1a1a2e 100%);
    border: 1px solid #ff6b6b;
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
    transition: all 0.2s ease;
    padding: 0.3rem 1rem;
}

.ban-stat-badge:hover {
    background: linear-gradient(135deg, #3d2a4a 0%, #252540 100%);
    border-color: #ff8888;
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.5);
    transform: scale(1.02);
}

.ban-stat-link {
    color: #ff8888 !important;
    text-decoration: none !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: none;
    border: none;
}

.ban-stat-link:hover {
    color: #ffaaaa !important;
    text-decoration: none !important;
}

.ban-stat-link:focus,
.ban-stat-link:active,
.ban-stat-link:visited {
    text-decoration: none !important;
    color: #ff8888 !important;
}
