/*
 Theme Name: Pocket VIP Mirror
 Description: Улучшенная адаптивная тема для информационных сайтов о торговле и бинарных опционах
 Version: 1.4
 Author: Custom VIP
 Text Domain: pocket-vip
*/

:root {
    --vip-main-dark:      #0a1e3d;
    --vip-brand-cyan:     #00d4ff;
    --vip-dark-accent:    #1e3a5c;
    --vip-light-text:     #ffffff;
    --vip-success-green:  #34c759;
    --vip-highlight-gold: #ffd700;
    --vip-content-fade:   rgba(255, 255, 255, 0.88);
    --vip-btn-active:     #34c759;
    --vip-btn-primary:    #00d4ff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', system-ui, sans-serif;
    color: var(--vip-light-text);
    background: var(--vip-main-dark);
    line-height: 1.5;
}

.vip-main-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================== Hero / Promo Section ================== */

.vip-hero-offer {
    position: relative;
    min-height: 100vh;
    padding-top: 110px;
    overflow: hidden;
}

.vip-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.vip-hero-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 15px;
}

.vip-hero-title {
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 35px;
    line-height: 1.05;
    color: var(--vip-highlight-gold);
}

.vip-hero-desc {
    font-size: 27px;
    margin-bottom: 55px;
}

.vip-hero-desc span,
.vip-hero-desc i {
    display: block;
    margin-bottom: 10px;
}

.vip-hero-desc i b {
    color: var(--vip-brand-cyan);
}

.vip-hero-actions {
    margin-bottom: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.vip-primary-cta,
.vip-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 55px;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.35s ease;
    box-shadow: 0 5px 18px rgba(0, 212, 255, 0.25);
}

.vip-primary-cta {
    background: var(--vip-success-green);
    color: var(--vip-main-dark);
}

.vip-primary-cta:hover {
    background: var(--vip-brand-cyan);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.4);
}

.vip-secondary-cta {
    background: var(--vip-brand-cyan);
    color: var(--vip-main-dark);
}

.vip-secondary-cta:hover {
    background: var(--vip-success-green);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.45);
}

.vip-hero-stats-intro {
    font-size: 26px;
    color: var(--vip-brand-cyan);
    font-weight: 500;
    margin-bottom: 45px;
}

.vip-hero-stats-grid {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.vip-stat-item {
    text-align: center;
    min-width: 200px;
}

.vip-stat-label {
    font-size: 22px;
    color: var(--vip-highlight-gold);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 6px;
}

.vip-stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--vip-success-green);
    margin-bottom: 10px;
}

.vip-stat-info {
    font-size: 17px;
    opacity: 0.9;
}

.vip-risk-note {
    font-size: 16px;
    color: #ff6b6b;
    text-align: center;
    margin: 20px 0;
    font-weight: 500;
}

/* ================== Benefits Section ================== */

.vip-benefits-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, #0f2b4a, #1e3a5c);
    border-top: 1px solid rgba(255,255,255,0.12);
}

.vip-benefits-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 65px;
    color: var(--vip-highlight-gold);
}

.vip-benefits-grid {
    display: grid;
    grid-template-columns: 220px repeat(4, minmax(180px, 1fr));
    gap: 12px;
    background: rgba(0,0,0,0.25);
    padding: 25px;
    border-radius: 14px;
}

.vip-highlight-label {
    font-size: 21px;
    font-weight: 700;
    color: var(--vip-brand-cyan);
    padding: 12px 0;
    text-align: left;
}

.vip-benefit-row {
    background: var(--vip-dark-accent);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-benefit-row:hover {
    transform: scale(1.04);
    box-shadow: 0 0 20px rgba(52,199,89,0.3);
}

.vip-benefit-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--vip-brand-cyan);
    margin-bottom: 8px;
}

.vip-benefit-detail,
.vip-benefit-perk {
    font-size: 18px;
    line-height: 1.4;
}

.vip-benefit-perk {
    color: var(--vip-success-green);
    font-weight: 500;
}

.vip-benefits-actions {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* ================== Steps Section ================== */

.vip-start-steps {
    padding: 90px 0;
    background: var(--vip-main-dark);
    border-top: 1px solid rgba(255,255,255,0.12);
}

.vip-steps-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 65px;
    color: var(--vip-highlight-gold);
}

.vip-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.vip-step-block {
    text-align: center;
    padding: 25px 15px;
    transition: transform 0.4s ease;
}

.vip-step-block:hover {
    transform: translateY(-8px);
}

.vip-step-visual {
    display: block;
    width: 100%;
    max-width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.vip-step-1 { background-image: url('../pocket/assets/step-1-icon.webp'); }
.vip-step-2 { background-image: url('../pocket/assets/step-2-icon.webp'); }
.vip-step-3 { background-image: url('../pocket/assets/step-3-icon.webp'); }
.vip-step-4 { background-image: url('../pocket/assets/step-4-icon.webp'); }

.vip-step-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--vip-highlight-gold);
    margin-bottom: 12px;
}

.vip-step-info {
    font-size: 18px;
    opacity: 0.85;
}

.vip-page-content {
    max-width: 920px;
    margin: 0 auto 70px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--vip-content-fade);
    text-align: justify;
}

.vip-payment-options {
    text-align: center;
}

.vip-payment-title {
    font-size: 22px;
    color: var(--vip-brand-cyan);
    margin-bottom: 35px;
}

.vip-payment-text-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.vip-payment-method {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 100px;
    background: linear-gradient(135deg, #1e3a5c, #0a1e3d);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #00d4ff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.vip-payment-method:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #00d4ff, #34c759);
    color: #0a1e3d;
}

/* Header & Navigation */

.vip-main-header {
    background: rgba(10, 30, 61, 0.92);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.vip-brand-logo {
    position: relative;
}

.vip-logo-text-link {
    text-decoration: none;
    display: inline-block;
}

.vip-logo-text {
    font-family: 'Orbitron', 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #00d4ff, #34c759, #ffd700, #00d4ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    animation: vip-softGlow 10s ease-in-out infinite;
    transition: transform 0.5s ease, text-shadow 0.5s ease;
}

.vip-logo-text:hover {
    transform: translateY(-5px) scale(1.05);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.9), 0 0 50px rgba(52, 199, 89, 0.7);
}

@keyframes vip-softGlow {
    0%   { background-position: 0% 50%; text-shadow: 0 0 15px rgba(0, 212, 255, 0.6); }
    50%  { background-position: 100% 50%; text-shadow: 0 0 25px rgba(52, 199, 89, 0.8); }
    100% { background-position: 0% 50%; text-shadow: 0 0 15px rgba(0, 212, 255, 0.6); }
}

.vip-mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.vip-hamburger-line {
    width: 100%;
    height: 4px;
    background: var(--vip-brand-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.vip-navigation-container {
    display: flex;
    align-items: center;
}

.vip-main-navigation ul.vip-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.vip-nav-menu a {
    color: var(--vip-light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.vip-nav-menu a:hover {
    color: var(--vip-brand-cyan);
    text-shadow: 0 0 8px var(--vip-brand-cyan);
}

/* Мобильное меню */

@media (max-width: 768px) {
    .vip-mobile-menu-btn {
        display: flex;
    }

    .vip-navigation-container {
        display: none;
        position: fixed;
        top: 80px;
        right: -250px;
        width: 250px;
        height: calc(100% - 80px);
        background: var(--vip-dark-accent);
        flex-direction: column;
        padding: 20px;
        transition: right 0.4s ease-in-out;
        z-index: 10;
    }

    .vip-navigation-container.active {
        display: flex;
        right: 0;
    }

    .vip-nav-menu {
        flex-direction: column;
        gap: 20px;
    }

    .vip-nav-menu a {
        font-size: 18px;
    }

    .vip-logo-text {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .vip-logo-text {
        font-size: 26px;
    }

    .vip-hero-title {
        font-size: 48px;
    }

    .vip-hero-desc {
        font-size: 20px;
    }

    .vip-primary-cta,
    .vip-secondary-cta {
        padding: 18px 40px;
        font-size: 20px;
    }
}

/* Footer */

.vip-main-footer {
    background: var(--vip-dark-accent);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.vip-footer-upper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.vip-footer-column {
    min-width: 180px;
}

.vip-column-title {
    font-size: 20px;
    color: var(--vip-brand-cyan);
    margin-bottom: 20px;
    font-weight: 700;
}

.vip-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-footer-links-list li {
    margin-bottom: 12px;
}

.vip-footer-links-list a {
    color: var(--vip-light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vip-footer-links-list a:hover {
    color: var(--vip-brand-cyan);
}

.vip-disclaimer-title {
    font-size: 20px;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.vip-disclaimer-text {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 800px;
}

.vip-copyright-text {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin-top: 40px;
}
.vip-disclaimer-title {
    font-size: 22px;
    color: #ff6b6b;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.vip-disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.vip-disclaimer-text ul {
    margin: 15px 0 15px 25px;
    padding-left: 0;
}

.vip-disclaimer-text li {
    margin-bottom: 8px;
}

.vip-footer-copyright {
    margin-top: 60px;
    text-align: center;
}