:root {
    --primary-bg: #000000;
    --secondary-bg: #111111;
    --accent-color: #ffffff;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-radius: 18px;
    --premium-gold: #FFD700;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Unbounded', sans-serif;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 8px;
    background-color: #000;
}

body::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 4px;
}

.page-wrapper {
    padding-left: 84px;
    min-height: 100vh;
    padding-top: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.premium-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}

.premium-badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgb(255 255 255 / 12%);
}

.premium-badge-icon svg {
    width: 48px;
    height: 48px;
    color: #000;
}

.premium-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 auto 16px auto;
    background: linear-gradient(135deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    width: fit-content;
    display: block;
}

.premium-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.plan-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 32px 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card.popular {
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0);
}

.plan-card.popular::before {
    content: 'ПОПУЛЯРНЫЙ';
    position: absolute;
    top: 39px;
    right: -54px;
    background: #ffffff;
    color: #000;
    padding: 6px 50px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.plan-price-currency {
    font-size: 24px;
    margin-left: 4px;
}

.plan-period {
    font-size: 13px;
    color: var(--text-muted);
}

.plan-discount {
    display: inline-block;
    background: rgba(255, 0, 0, 0.2);
    color: #ff5c5c;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.plan-feature {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.plan-feature:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.buy-button {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Unbounded', sans-serif;
    margin-top: auto;
}

.buy-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgb(255 255 255 / 2%);
}

.plan-card.popular .buy-button {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0);
}

.benefits-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    padding: 48px;
    margin-bottom: 80px;
    backdrop-filter: blur(10px);
}

.benefits-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.benefit-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .page-wrapper {
        padding-left: 0;
        padding-bottom: 75px;
    }

    .container {
        padding: 0 15px;
    }

    .premium-hero {
        padding-top: 90px;
    }

    .premium-title {
        font-size: 32px;
    }

    .premium-subtitle {
        font-size: 14px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .benefits-section {
        padding: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
