:root {
    --gold: #facc15;
    --gold-light: #fde68a;
    --green: #22c55e;
    --red: #ef4444;
    --dark: #08101d;
    --dark-2: #0b1220;
    --card: #111827;
    --muted: #94a3b8;
    --text: #ffffff;
    --line: rgba(250, 204, 21, .14);
    --shadow: 0 22px 50px rgba(0, 0, 0, .35);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 17px;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(94%, 1400px);
    margin: 0 auto;
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(8, 16, 29, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    transition: box-shadow .3s ease, background .3s ease;
}

.header.sticky {
    background: rgba(8, 16, 29, .98);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.logo-mark {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111827;
    font-size: 25px;
    box-shadow: 0 12px 26px rgba(250, 204, 21, .22);
}

.logo h2 {
    font-size: 26px;
    line-height: 1;
}

.logo span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 5px;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.navbar {
    display: block;
}

.navbar a {
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 700;
    transition: color .25s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vip-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.vip-btn,
.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111827;
}

.btn-outline {
    color: var(--gold);
    border: 2px solid var(--gold);
    background: #fff;
}

.btn-dark {
    background: #0f172a;
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.vip-btn:hover,
.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .28);
}

.menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #111827;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: var(--dark);
    transition: opacity .45s ease, visibility .45s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-ring {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border: 5px solid rgba(250, 204, 21, .18);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .9s linear infinite;
}

.loader p {
    color: var(--muted);
}

.hero {
    padding: 170px 0 92px;
    background: radial-gradient(circle at 78% 18%, #26344e, var(--dark) 55%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: center;
}

.hero-badge,
.section-title span,
.pick-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-badge {
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(250, 204, 21, .12);
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero p {
    max-width: 610px;
    color: #cbd5e1;
    font-size: 17px;
    margin-bottom: 34px;
}

.shop-hero {
    padding: 160px 0 72px;
    background: linear-gradient(135deg, rgba(250, 204, 21, .08), rgba(8, 16, 29, .98));
}

.shop-hero-grid,
.shop-story-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}

.shop-hero-content h1 {
    font-size: clamp(32px, 4vw, 46px);
    margin-bottom: 22px;
}

.shop-hero-content p {
    color: #cbd5e1;
    max-width: 650px;
    margin-bottom: 24px;
}

.shop-trust-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    color: #e5e7eb;
}

.shop-trust-list div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-trust-list i,
.shop-hero-badge,
.product-tag {
    color: var(--gold);
}

.shop-hero-card,
.shop-info-card {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(17, 24, 39, .9);
    box-shadow: var(--shadow);
}

.shop-hero-card h3,
.shop-info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.shop-hero-card p,
.shop-info-card p,
.shop-info-card li {
    color: #cbd5e1;
}

.shop-hero-card ul,
.shop-info-card ul {
    margin-left: 18px;
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.shop-feature-strip {
    padding: 24px 0 36px;
}

.shop-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.shop-feature-grid .feature-card {
    min-height: 100%;
}

.shop-products {
    padding: 32px 0 70px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(17, 24, 39, .95), rgba(8, 16, 29, .98));
    box-shadow: var(--shadow);
}

.product-image {
    height: 220px;
    padding: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(250, 204, 21, .18), rgba(255, 255, 255, .03));
}

.image-frame {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 1px dashed rgba(250, 204, 21, .35);
    border-radius: 18px;
    background: rgba(8, 16, 29, .65);
    color: #f8fafc;
    text-align: center;
    padding: 18px;
}

.image-frame i {
    font-size: 42px;
    color: var(--gold);
}

.image-frame span {
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 600;
}

.product-body {
    padding: 22px 22px 24px;
}

.product-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-body p {
    color: #cbd5e1;
    margin-bottom: 18px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.product-meta strong {
    font-size: 24px;
    color: var(--gold);
}

.shop-story {
    padding: 0 0 90px;
}

.hero-buttons,
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 18px;
    max-width: 560px;
    margin-top: 42px;
}

.stat {
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.stat h2 {
    color: var(--gold);
    font-size: 30px;
}

.stat p {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}

.hero-visual {
    min-height: 320px;
    display: grid;
    place-items: center;
}

.hero-mini-panel {
    width: min(100%, 280px);
    min-height: 280px;
    border-radius: 20px;
    border: 1px solid rgba(250, 204, 21, .24);
    background: linear-gradient(145deg, rgba(17, 24, 39, .98), rgba(8, 16, 29, .92));
    box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
    animation: float 5s ease-in-out infinite;
}

.hero-mini-card {
    width: min(84%, 240px);
    padding: 24px;
    text-align: center;
}

.hero-mini-card h3 {
    margin: 10px 0 8px;
    font-size: 22px;
}

.hero-mini-card strong {
    font-size: 40px;
}

.match-ticker {
    display: flex;
    overflow: hidden;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.indicator-bar {
    padding: 8px 0 0;
    margin-top: -8px;
}

.indicator-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.indicator-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    min-height: 78px;
    padding: 14px 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(17, 24, 39, .98), rgba(8, 16, 29, .96));
    border: 1px solid rgba(250, 204, 21, .28);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
    backdrop-filter: blur(16px) saturate(140%);
    overflow: hidden;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(22px) scale(.96);
    transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
    animation: indicatorFloatGlow 3.2s ease-in-out infinite;
}

.indicator-card.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.indicator-card:hover {
    transform: translateY(-7px) scale(1.04);
    box-shadow: 0 18px 36px rgba(250, 204, 21, .16);
    animation-play-state: paused;
    filter: brightness(1.06);
}

.indicator-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111827;
    font-size: 16px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, .3);
}

.indicator-label {
    line-height: 1.2;
}

.ticker-track {
    display: flex;
    min-width: max-content;
    animation: ticker 30s linear infinite;
}

.ticker-track span {
    padding: 13px 48px;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

section {
    padding: 104px 0;
}

.section-band,
.why-us,
.testimonials,
.contact {
    background: var(--dark-2);
}

.section-title {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-title h2 {
    margin: 10px 0 12px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.18;
}

.section-title p {
    color: var(--muted);
}

.best-pick-card {
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr;
    gap: 28px;
    align-items: center;
    padding: 42px;
    border: 1px solid rgba(250, 204, 21, .26);
    border-radius: 16px;
    background: rgba(17, 24, 39, .75);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.btn-primary{

box-shadow:0 0 25px rgba(250,204,21,.35);

}

.btn-primary:hover{

box-shadow:0 0 45px rgba(250,204,21,.6);

}

.stats-card,
.tip-card,
.feature-card,
.price-card,
.vip-card,
.testimonial-card{

transition:.4s;

}

.stats-card:hover,
.tip-card:hover,
.feature-card:hover,
.price-card:hover,
.vip-card:hover,
.testimonial-card:hover{

transform:translateY(-10px) scale(1.02);

}

.btn-primary{

background-size:200% auto;

animation:gradientMove 4s linear infinite;

}

@keyframes gradientMove{

0%{

background-position:0%;

}

100%{

background-position:200%;

}

}

.best-pick-card h2 {
    font-size: clamp(30px, 4vw, 44px);
}

.best-pick-card h2 span,
.pick-details strong,
.vip-footer strong {
    color: var(--green);
}

.best-pick-card p {
    color: var(--muted);
}

.prediction-box {
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    background: var(--gold);
    color: #111827;
}

.prediction-box span,
.pick-details span {
    display: block;
    font-weight: 700;
}

.prediction-box strong {
    display: block;
    font-size: 34px;
    line-height: 1.1;
}

.pick-details {
    display: grid;
    gap: 14px;
}

.pick-details > div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111827;
}

.pick-details strong {
    font-size: 26px;
}

.stats-grid,
.tips-grid,
.vip-grid,
.features,
.testimonial-grid,
.pricing-grid,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.tips-grid,
.vip-grid,
.features,
.testimonial-grid,
.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-card,
.tip-card,
.vip-card,
.feature-card,
.testimonial-card,
.price-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.stats-card:hover,
.tip-card:hover,
.vip-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.stats-card {
    padding: 34px 24px;
    text-align: center;
}

.stats-card i,
.feature-card i {
    color: var(--gold);
    font-size: 40px;
    margin-bottom: 18px;
}

.stats-card h3 {
    color: var(--green);
    font-size: 42px;
    line-height: 1;
}

.stats-card p,
.feature-card p,
.testimonial-card p {
    color: var(--muted);
}

.tip-card,
.vip-card {
    overflow: hidden;
}

.league,
.vip-header {
    padding: 15px 18px;
    color: #111827;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.tip-card h3,
.vip-card h3 {
    padding: 24px 24px 14px;
    font-size: 23px;
}

.prediction {
    margin: 0 24px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    background: var(--green);
}

.tip-info,
.vip-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px 24px;
}

.tip-info span,
.vip-footer span {
    color: var(--muted);
}

.tip-info strong {
    display: block;
    color: #fff;
}

.locked {
    margin: 0 24px 24px;
    color: var(--red);
    font-weight: 800;
}

.vip-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.feature-card,
.testimonial-card,
.price-card {
    padding: 34px;
}

.feature-card {
    text-align: center;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.results-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--card);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.table-head,
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 18px;
    padding: 18px 24px;
    align-items: center;
}

.table-head {
    color: #111827;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.table-row {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.table-row:hover {
    background: #172033;
}

.won {
    color: var(--green);
    font-weight: 800;
}

.lost {
    color: var(--red);
    font-weight: 800;
}

.avatar {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111827;
    font-weight: 800;
}

/*==========================================
AVIATOR PAGE STYLES
==========================================*/

.aviator-hero {
    background: radial-gradient(circle at top left, rgba(250, 204, 21, .15), transparent 32%), linear-gradient(135deg, #08101d 0%, #111827 100%);
}

.aviator-panel {
    position: relative;
    width: min(100%, 500px);
    min-height: 460px;
    border-radius: 24px;
    border: 1px solid rgba(250, 204, 21, .24);
    background: linear-gradient(145deg, rgba(17, 24, 39, .98), rgba(8, 16, 29, .92));
    box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
    overflow: hidden;
    display: grid;
    place-items: center;
}

.panel-glow {
    position: absolute;
    inset: auto auto 40px 40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 204, 21, .3), transparent 70%);
    filter: blur(10px);
}

.signal-card {
    position: relative;
    z-index: 1;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(250, 204, 21, .24);
    backdrop-filter: blur(16px);
}

.signal-card.featured {
    width: min(80%, 320px);
    text-align: center;
}

.signal-card h3 {
    margin: 10px 0 8px;
    font-size: 24px;
}

.signal-card p {
    color: var(--muted);
    margin-bottom: 16px;
}

.signal-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(250, 204, 21, .16);
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.signal-card strong {
    display: block;
    font-size: 44px;
    color: var(--green);
    margin-bottom: 6px;
}

.signal-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/*==========================================
PREMIUM HERO
==========================================*/

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.investment-card {
    margin-top: 28px;
    padding: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(250, 204, 21, .2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
}

.investment-card h3 {
    margin-bottom: 18px;
}

.investment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.investment-form input,
.investment-form select {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(250, 204, 21, .22);
    border-radius: 12px;
    background: rgba(8, 16, 29, .9);
    color: var(--text);
    font: inherit;
}

.investment-form input::placeholder {
    color: #94a3b8;
}

.investment-form-message {
    min-height: 24px;
    color: var(--gold);
    font-weight: 700;
}

.status-banner {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(250, 204, 21, .2);
    background: rgba(250, 204, 21, .1);
    color: #f8fafc;
}

.status-banner strong {
    color: var(--gold);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.dashboard-card {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(250, 204, 21, .18);
}

.dashboard-label {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.dashboard-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.plan-standalone {
    margin-top: 24px;
    border: 1px solid rgba(250, 204, 21, .22);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.plan-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-weight: 600;
    color: #e2e8f0;
}

.plan-row:first-child {
    border-top: 0;
}

.plan-row-head {
    background: rgba(250, 204, 21, .12);
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.plan-row span:nth-child(2) {
    color: var(--green);
}

.dashboard-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.dashboard-panel {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(250, 204, 21, .18);
}

.dashboard-panel h3 {
    margin-bottom: 10px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}

.payment-methods span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(250, 204, 21, .12);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
}

.hero{

    position:relative;

    overflow:hidden;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    radial-gradient(circle at top right,#1e293b,#08101d 70%);

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    background:rgba(250,204,21,.08);

    border-radius:50%;

    top:-300px;

    right:-250px;

    filter:blur(80px);

}

.hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(34,197,94,.08);

    border-radius:50%;

    bottom:-220px;

    left:-180px;

    filter:blur(70px);

}

/*==========================================
FLOATING BALLS
==========================================*/

.floating-ball{

position:absolute;

font-size:34px;

animation:floatBall 6s infinite ease-in-out;

opacity:.5;

}

.ball1{

top:5%;

right:10%;

}

.ball2{

bottom:15%;

right:25%;

animation-delay:2s;

}

.ball3{

left:8%;

top:30%;

animation-delay:4s;

}

@keyframes floatBall{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-card strong {
    display: inline-block;
    margin-top: 18px;
    color: var(--green);
}

.price-card {
    position: relative;
    padding-bottom: 34px;
}

.price-card.featured {
    border-color: var(--gold);
    transform: scale(1.03);
}

.popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--gold);
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.price-card h3 {
    color: var(--gold);
    font-size: 24px;
}

.price {
    margin: 14px 0 4px;
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
}

.price-card p {
    color: var(--muted);
    margin-bottom: 24px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-card li {
    padding: 10px 0;
    color: #cbd5e1;
}

.price-card li i {
    color: var(--green);
    margin-right: 8px;
}

.payment-box {
    margin-top: 28px;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(250, 204, 21, .24);
    background: linear-gradient(135deg, rgba(17, 24, 39, .96), rgba(8, 16, 29, .94));
    box-shadow: 0 20px 44px rgba(0, 0, 0, .2);
}

.payment-box h3 {
    margin-bottom: 10px;
    color: var(--gold);
}

.payment-box p {
    color: var(--muted);
    margin-bottom: 18px;
}

.admin-hero {
    padding-top: 170px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.admin-stat-card {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(250, 204, 21, .18);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.admin-stat-card h3 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 6px;
}

.admin-stat-card p {
    color: var(--muted);
}

.admin-panel {
    margin-top: 28px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(250, 204, 21, .2);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.admin-table th {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.admin-table td {
    color: #e2e8f0;
}

.admin-table .pill {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.admin-table .pill.active {
    background: rgba(34, 197, 94, .18);
    color: var(--green);
}

.admin-table .pill.pending {
    background: rgba(250, 204, 21, .14);
    color: var(--gold);
}

.admin-table .pill.blocked {
    background: rgba(239, 68, 68, .18);
    color: #fda4af;
}

.admin-table .action-btn {
    margin-right: 8px;
    padding: 8px 10px;
    border: 0;
    border-radius: 10px;
    background: rgba(250, 204, 21, .14);
    color: var(--gold);
    cursor: pointer;
    font-size: 13px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-methods span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    font-weight: 600;
}

.contact-box {
    padding: 64px;
    border-radius: 20px;
    text-align: center;
    color: #111827;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.contact-box h2 {
    font-size: clamp(32px, 5vw, 48px);
}

.contact-box p {
    max-width: 700px;
    margin: 14px auto 30px;
}

.contact-buttons {
    justify-content: center;
}

.footer {
    padding: 72px 0 28px;
    background: #050b14;
    border-top: 1px solid var(--line);
}

.footer-grid {
    grid-template-columns: 1.4fr .8fr .8fr 1fr;
    margin-bottom: 44px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer p,
.footer li {
    color: var(--muted);
}

.footer h3 {
    margin-bottom: 18px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--gold);
}

.footer-social,
.payments {
    display: flex;
    gap: 14px;
}

.footer-social {
    margin-top: 18px;
}

.footer-social a,
.whatsapp-float,
.back-top {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    transition: transform .3s ease, background .3s ease, color .3s ease, opacity .3s ease;
}

.footer-social a:hover,
.back-top:hover {
    background: var(--gold);
    color: #111827;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.payments {
    color: var(--gold);
    font-size: 30px;
}

.whatsapp-float,
.back-top {
    position: fixed;
    right: 22px;
    z-index: 900;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
}

.whatsapp-float {
    bottom: 86px;
    background: #25d366;
    font-size: 24px;
}

.back-top {
    bottom: 24px;
    background: var(--gold);
    color: #111827;
    opacity: 0;
    pointer-events: none;
}

.back-top.show {
    opacity: 1;
    pointer-events: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .42);
    transform: scale(0);
    animation: ripple .6s linear;
    pointer-events: none;
}

.btn {
    position: relative;
    overflow: hidden;
}

#access-gate {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(3, 7, 18, .92);
    backdrop-filter: blur(12px);
}

#access-gate.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.access-gate-card {
    width: min(100%, 430px);
    padding: 36px;
    border-radius: 24px;
    border: 1px solid rgba(250, 204, 21, .24);
    background: linear-gradient(135deg, rgba(17, 24, 39, .98), rgba(8, 16, 29, .95));
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
    text-align: center;
}

.access-gate-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111827;
    font-size: 24px;
}

.access-gate-card h2 {
    margin-bottom: 10px;
    font-size: 28px;
}

.access-gate-card p {
    color: var(--muted);
}

.access-gate-form {
    display: grid;
    gap: 12px;
    margin: 22px 0 12px;
}

.access-gate-form input {
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(250, 204, 21, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 15px;
}

.access-gate-form input:focus {
    outline: 2px solid rgba(250, 204, 21, .28);
    border-color: var(--gold);
}

.access-gate-hint {
    font-size: 14px;
    margin-top: 8px;
}

.access-error {
    min-height: 22px;
    margin-top: 10px;
    color: var(--red);
    font-weight: 600;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

@keyframes ripple {
    to {
        opacity: 0;
        transform: scale(4);
    }
}

@keyframes indicatorFloatGlow {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 26px rgba(0, 0, 0, .24), 0 0 0 1px rgba(250, 204, 21, .12);
    }

    50% {
        transform: translateY(-7px) scale(1.01);
        box-shadow: 0 16px 34px rgba(250, 204, 21, .16), 0 0 0 1px rgba(250, 204, 21, .28);
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.85fr .95fr;
    gap: 36px;
    align-items: start;
}

.blog-main {
    display: grid;
    gap: 24px;
}

.blog-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(17, 24, 39, .92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.featured-article {
    padding: 32px;
    background: linear-gradient(135deg, rgba(17, 24, 39, .98), rgba(8, 16, 29, .94));
    border-color: rgba(250, 204, 21, .24);
}

.blog-image {
    min-height: 180px;
    border-radius: 12px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(250, 204, 21, .24), rgba(34, 197, 94, .18));
    display: flex;
    align-items: flex-end;
    padding: 18px;
}

.blog-image span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--gold);
    color: #111827;
    font-weight: 800;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 14px;
}

.blog-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 18px 0 20px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
}

.blog-highlight-grid h4 {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 16px;
}

.blog-highlight-grid ul {
    list-style: none;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.blog-highlight-grid li::before {
    content: "•";
    color: var(--green);
    margin-right: 8px;
}

.blog-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.blog-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.blog-list {
    display: grid;
    gap: 16px;
}

.sidebar-card {
    padding: 24px;
    border-radius: 18px;
    background: rgba(17, 24, 39, .92);
    border: 1px solid var(--line);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}

.sidebar-card h3 {
    margin-bottom: 14px;
    font-size: 20px;
}

.sidebar-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.sidebar-card li,
.sidebar-card a {
    color: var(--muted);
}

.sidebar-card a:hover {
    color: var(--gold);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.info-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(17, 24, 39, .92);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .18);
}

.info-card i {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 14px;
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.info-card p,
.info-card li {
    color: var(--muted);
}

.info-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.info-list li::before {
    content: "•";
    color: var(--green);
    margin-right: 8px;
}

@media (max-width: 1280px) {
    .hero-grid {
        gap: 40px;
    }

    .best-pick-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1080px) {
    .blog-highlight-grid {
        grid-template-columns: 1fr;
    }

    .plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .navbar {
        position: absolute;
        top: 88px;
        left: 0;
        width: 100%;
        display: none;
        padding: 20px 4%;
        background: #111827;
        border-bottom: 1px solid var(--line);
    }

    .navbar.show-menu {
        display: block;
    }

    .navbar ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .menu-btn {
        display: grid;
        place-items: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content,
    .hero h1,
    .hero p,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        min-height: auto;
    }

    .stats-grid,
    .tips-grid,
    .vip-grid,
    .features,
    .testimonial-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .info-grid,
    .investment-grid,
    .dashboard-grid,
    .dashboard-panels {
        grid-template-columns: 1fr;
    }

    .indicator-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shop-hero-grid,
    .shop-story-grid,
    .shop-feature-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(96%, 860px);
    }

    .header-inner {
        min-height: 80px;
    }

    .hero {
        padding: 140px 0 72px;
        min-height: auto;
    }

    .section-title h2 {
        font-size: clamp(28px, 5vw, 36px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .container {
        width: min(95%, 620px);
    }

    body {
        font-size: 16px;
    }

    .header-inner {
        min-height: 78px;
        gap: 12px;
    }

    .logo {
        gap: 10px;
    }

    .logo h2 {
        font-size: 20px;
    }

    .logo span,
    .vip-btn {
        display: none;
    }

    .navbar {
        top: 78px;
    }

    .hero {
        padding: 128px 0 70px;
    }

    .hero-stats,
    .stats-grid,
    .tips-grid,
    .vip-grid,
    .features,
    .testimonial-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .contact-buttons {
        flex-direction: column;
    }

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

    .btn,
    .contact-buttons .btn {
        width: 100%;
    }

    .best-pick-card,
    .contact-box,
    .investment-card,
    .dashboard-card,
    .dashboard-panel,
    .feature-card,
    .testimonial-card,
    .price-card {
        padding: 24px 18px;
    }

    .table-head,
    .table-row {
        grid-template-columns: 1.3fr 1fr .7fr;
        gap: 10px;
        padding: 16px 14px;
        font-size: 13px;
    }

    .price-card.featured {
        transform: none;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .indicator-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 480px) {
    .container {
        width: min(94%, 560px);
    }

    .logo-mark {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .logo h2 {
        font-size: 18px;
    }

    .hero {
        padding: 118px 0 60px;
    }

    .hero h1 {
        font-size: clamp(24px, 8vw, 30px);
    }

    .hero p {
        font-size: 15px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .investment-form input,
    .investment-form select {
        min-height: 46px;
        padding: 0 12px;
    }

    .table-head,
    .table-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
}
