@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --primary: #E1306C;
    --primary-dark: #C13584;
    --secondary: #833AB4;
    --accent: #405DE6;
    --gold: #F77737;
    --dark: #0a0a0f;
    --darker: #050508;
    --light: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(131, 58, 180, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(225, 48, 108, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(64, 93, 230, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, var(--accent), var(--primary));
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--secondary), var(--gold));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(-50px, -30px) scale(1.05); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    -webkit-text-fill-color: white;
    box-shadow: 0 8px 32px rgba(225, 48, 108, 0.3);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(225, 48, 108, 0.3); }
    50% { box-shadow: 0 8px 48px rgba(225, 48, 108, 0.5); }
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--light);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    padding: 20px 0 15px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 10px;
    line-height: 1.7;
}

.main-card {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(10, 10, 20, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.card-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 48, 108, 0.15), transparent 70%);
    pointer-events: none;
}

.package-header {
    text-align: center;
    margin-bottom: 40px;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 16px 48px rgba(225, 48, 108, 0.3);
    animation: iconFloat 4s infinite ease-in-out;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.package-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.package-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.input-section {
    margin-bottom: 40px;
}

.input-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.username-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.username-prefix {
    position: absolute;
    left: 20px;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.username-input {
    width: 100%;
    padding: 18px 20px 18px 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    font-size: 1.1rem;
    color: var(--light);
    transition: all 0.3s ease;
    font-family: inherit;
    text-indent: 5px;
}

.username-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.15);
}

.username-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.slider-section {
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.followers-display {
    text-align: center;
    margin-bottom: 30px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.followers-count {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: 0 2px 20px rgba(225, 48, 108, 0.3);
}

.followers-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.slider-container {
    position: relative;
    padding: 20px 0;
}

.slider-track {
    position: relative;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: visible;
}

.slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 10px;
    transition: width 0.2s ease;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
}

.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    -webkit-appearance: none;
    z-index: 10;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--light), #f0f0f0);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(225, 48, 108, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: none;
}

.slider-input:hover + .slider-thumb,
.slider-input:active + .slider-thumb {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(225, 48, 108, 0.5);
}

.choose-package-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0;
    gap: 10px;
}

.slider-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgb(25, 25, 45);
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.95), rgba(15, 15, 30, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    flex: 1;
    min-width: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.slider-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0), rgba(131, 58, 180, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.slider-label.active {
    color: white;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.9), rgba(131, 58, 180, 0.9));
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5), 0 4px 15px rgba(131, 58, 180, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slider-label.active::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.slider-label:hover:not(.active) {
    color: white;
    background: linear-gradient(145deg, rgba(50, 50, 80, 0.9), rgba(30, 30, 50, 0.95));
    border-color: rgba(225, 48, 108, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(225, 48, 108, 0.15);
    z-index: 1;
}

.price-section {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(131, 58, 180, 0.1));
    border: 1px solid rgba(225, 48, 108, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.3s ease;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.submit-btn {
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(225, 48, 108, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.features-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(131, 58, 180, 0.15));
    border: 1px solid rgba(225, 48, 108, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff6b9d;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-badge i {
    font-size: 1rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b9d, #c24cff, #6b7cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card-pro {
    position: relative;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px 35px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.6), rgba(194, 76, 255, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-pro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 107, 157, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card-pro:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 
        0 25px 50px -12px rgba(225, 48, 108, 0.25),
        0 0 0 1px rgba(255, 107, 157, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card-pro:hover::before,
.feature-card-pro:hover::after {
    opacity: 1;
}

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card-pro:hover .feature-glow {
    opacity: 1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d, #c24cff);
    border-radius: 20px;
    transform: rotate(-6deg);
    transition: all 0.4s ease;
    z-index: 0;
}

.feature-card-pro:hover .feature-icon-bg {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.feature-icon-new {
    position: relative;
    z-index: 2;
    font-size: 1.8rem;
    color: white;
    text-align: center;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-title-pro {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.feature-desc strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00ff88;
}

.feature-badge i {
    font-size: 0.85rem;
}

.stats-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.stats-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.stats-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.4), transparent 70%);
    top: -100px;
    left: -100px;
    animation: floatOrb 15s ease-in-out infinite;
}

.stats-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 76, 255, 0.4), transparent 70%);
    bottom: -50px;
    right: -50px;
    animation: floatOrb 12s ease-in-out infinite reverse;
}

.stats-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(107, 124, 255, 0.3), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatOrb 18s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(20px, 30px); }
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-pod {
    position: relative;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 35px 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    min-width: 220px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.stat-pod::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(194, 76, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-pod:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 
        0 20px 40px rgba(225, 48, 108, 0.2),
        0 0 60px rgba(255, 107, 157, 0.1);
}

.stat-pod:hover::before {
    opacity: 1;
}

.stat-pod-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.15), transparent 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.stat-pod:hover .stat-pod-glow {
    opacity: 1;
}

.stat-icon-mini {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(194, 76, 255, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: #ff6b9d;
    position: relative;
    z-index: 1;
}

.stat-number-animated {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b9d, #c24cff, #6b7cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    line-height: 1.1;
}

.stat-counter {
    font-variant-numeric: tabular-nums;
}

.stat-suffix {
    font-size: 2rem;
}

.stat-label-pro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 900px) {
    .stat-divider {
        display: none;
    }
    .stats-container {
        gap: 20px;
    }
    .stat-pod {
        min-width: 280px;
    }
}

.stat-sparkle {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #ff6b9d;
    border-radius: 50%;
    opacity: 0.6;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge i {
    color: #00ff88;
    font-size: 1.1rem;
}

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

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 48, 108, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.3);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 80px auto;
    text-align: center;
    max-width: 900px;
    flex-wrap: wrap;
}

.stat-item {
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.6), rgba(20, 20, 35, 0.8));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.4);
}

.error-message {
    color: #ff4757;
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: 0;
    width: 4px;
    height: 4px;
    background: rgba(225, 48, 108, 0.6);
    border-radius: 50%;
    animation: particleFloat 12s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.instagram-gradient {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

.username-input-wrapper {
    position: relative;
}

.profile-preview {
    margin-bottom: 30px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.8), rgba(20, 20, 35, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) padding-box,
                linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
    object-fit: cover;
}

.profile-verified {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--dark);
    border-radius: 50%;
    padding: 2px;
}

.profile-info {
    flex: 1;
    min-width: 150px;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 4px;
}

.profile-username {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.profile-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-stat {
    text-align: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    min-width: 100px;
}

.profile-stat.highlight {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.profile-stat .stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 4px;
}

.profile-stat.highlight .stat-value {
    color: #00ff88;
}

.profile-stat .stat-name {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-arrow {
    animation: arrowPulse 1.5s infinite ease-in-out;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.7; }
}

.profile-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px;
    color: rgba(255, 255, 255, 0.6);
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-icon {
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
}

.arrow-icon {
    animation: arrowBounce 1.5s infinite ease-in-out;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.confirm-modal.show {
    display: flex;
}

.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
    z-index: 1;
}

.confirm-content {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.98), rgba(20, 20, 35, 0.99));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(225, 48, 108, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.confirm-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 100;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.confirm-close:active,
.confirm-close:focus {
    background: rgba(255, 255, 255, 0.3);
    outline: none;
}

.confirm-header {
    text-align: center;
    margin-bottom: 30px;
}

.confirm-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.confirm-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.confirm-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 20px;
}

.confirm-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.confirm-profile-info {
    flex: 1;
}

.confirm-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 3px;
}

.confirm-username {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.confirm-username-only {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
    text-align: center;
    width: 100%;
}

.confirm-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.confirm-stat {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    min-width: 90px;
}

.confirm-stat.highlight {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.confirm-stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 4px;
}

.confirm-stat.highlight .confirm-stat-value {
    color: #00ff88;
}

.confirm-stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirm-arrow {
    animation: arrowPulse 1.5s infinite ease-in-out;
}

.confirm-user-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 25px;
}

.confirm-user-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.confirm-username-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
}

.confirm-order-details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 5px;
    margin-bottom: 25px;
}

.confirm-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 8px;
}

.confirm-detail-row.total {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(131, 58, 180, 0.15));
    border: 1px solid rgba(225, 48, 108, 0.2);
    margin-top: 4px;
}

.confirm-detail-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
}

.confirm-detail-value {
    font-weight: 700;
    color: var(--light);
    font-size: 1.05rem;
}

.confirm-detail-value.highlight {
    color: #00ff88;
    font-weight: 700;
}

.confirm-detail-value.price {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.confirm-submit-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #00c853, #00e676);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.confirm-submit-btn .btn-text {
    position: relative;
    z-index: 1;
}

.confirm-submit-btn .btn-arrow-animated {
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

.confirm-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
}

.confirm-submit-btn:hover .btn-arrow-animated {
    animation: arrowBounce 0.5s ease-in-out infinite;
}

.notif-map {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.8), rgba(20, 20, 35, 0.9));
    flex-shrink: 0;
}

.notif-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notifications-container {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 240px;
}

.purchase-notification {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.9), rgba(15, 15, 25, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s ease;
}

.purchase-notification.show {
    transform: translateX(0);
    opacity: 0.95;
}

.notif-avatar {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.notif-flag {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.8), rgba(20, 20, 35, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-text strong {
    color: var(--light);
}

.notif-detail {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-highlight {
    color: #00ff88;
    font-weight: 600;
}

.notif-time {
    display: none;
}

.notif-close {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 2px;
    transition: color 0.3s ease;
    line-height: 1;
}

.notif-close:hover {
    color: var(--light);
}

.legendary-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.legendary-header.minimal-header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.legendary-header.minimal-header.scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.minimal-header .header-inner {
    justify-content: flex-end;
}

.minimal-header .hamburger-btn {
    display: flex !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.minimal-header .hamburger-btn:hover {
    background: transparent !important;
}

.legendary-header .header-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.03), rgba(131, 58, 180, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.legendary-header.scrolled {
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.legendary-header.scrolled .header-glow {
    opacity: 1;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
    transition: all 0.3s ease;
}

.header-brand:hover .brand-icon {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 6px 25px rgba(225, 48, 108, 0.5);
}

.header-brand .brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-nav .nav-item .nav-icon {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.desktop-nav .nav-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.desktop-nav .nav-item:hover .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

.desktop-nav .nav-item.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(131, 58, 180, 0.15));
}

.desktop-nav .nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.nav-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    min-width: 18px;
    text-align: center;
}

.nav-badge.pulse {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.balance-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00ff88;
}

.balance-chip .balance-icon {
    font-size: 0.85rem;
}

.notification-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.notification-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.notification-icon .notif-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
    border: 2px solid var(--darker);
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.logout-btn-header {
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff6b7a;
    padding: 10px 14px;
}

.logout-btn-header:hover {
    background: rgba(255, 71, 87, 0.25);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.2);
}

.hamburger-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-box {
    width: 20px;
    height: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-inner::before {
    content: '';
    top: -6px;
}

.hamburger-inner::after {
    content: '';
    top: 6px;
}

.hamburger-btn.active .hamburger-inner {
    background: transparent;
}

.hamburger-btn.active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger-btn.active .hamburger-inner::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.open .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 25, 0.98), rgba(8, 8, 18, 0.99));
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.mobile-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mobile-brand .brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: rgba(255, 71, 87, 0.15);
    border-color: rgba(255, 71, 87, 0.3);
}

.mobile-user-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    margin: 16px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 200, 100, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
}

.mobile-user-card .user-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.mobile-user-card .user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-user-card .user-name {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.mobile-user-card .user-balance {
    font-weight: 700;
    color: #00ff88;
    font-size: 1.1rem;
}

.mobile-nav {
    padding: 10px 16px;
    flex: 1;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.mobile-nav-item.active {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.12), rgba(131, 58, 180, 0.12));
    color: white;
}

.mobile-nav-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 0.95rem;
}

.mobile-nav-item.active .mobile-nav-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.mobile-nav-item span:nth-child(2) {
    flex: 1;
    font-weight: 500;
}

.nav-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.mobile-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    animation: badgePulse 2s infinite;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-login-btn,
.mobile-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-login-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
}

.mobile-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.mobile-logout-btn {
    background: rgba(255, 71, 87, 0.12);
    border: 1px solid rgba(255, 71, 87, 0.25);
    color: #ff6b7a;
}

.mobile-logout-btn:hover {
    background: rgba(255, 71, 87, 0.2);
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .balance-chip {
        display: none;
    }
    
    .logout-btn-header {
        display: none;
    }
    
    .login-trigger span {
        display: none;
    }
    
    .login-trigger {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .legendary-header {
        padding: 10px 16px;
    }
    
    .header-brand .brand-text {
        font-size: 1.2rem;
    }
    
    .header-brand .brand-icon {
        width: 38px;
        height: 38px;
    }
    
    .notification-icon {
        width: 36px;
        height: 36px;
    }
    
    .action-btn {
        padding: 10px 12px;
    }
    
    .hamburger-btn {
        width: 40px;
        height: 40px;
    }
}

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal.show {
    opacity: 1;
    visibility: visible;
}

.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.login-content {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, rgba(20, 20, 35, 0.98), rgba(10, 10, 20, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.login-modal.show .login-content {
    transform: scale(1) translateY(0);
}

.login-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.login-close:hover {
    background: rgba(255, 71, 87, 0.15);
    border-color: rgba(255, 71, 87, 0.3);
    color: #ff6b7a;
}

.login-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.4);
}

.login-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.login-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.login-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    margin-bottom: 24px;
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 500;
}

.login-input-group {
    margin-bottom: 20px;
}

.login-input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-input-group .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-group .input-wrapper i {
    position: absolute;
    left: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.login-input-group .input-wrapper:focus-within i {
    color: var(--primary);
}

.login-input-group input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.login-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.login-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(225, 48, 108, 0.1);
}

.login-error {
    display: none;
    color: #ff6b7a;
    font-size: 0.85rem;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 10px;
    text-align: center;
}

.login-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4);
}

.login-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 480px) {
    .login-content {
        padding: 30px 24px;
        border-radius: 20px;
    }
    
    .login-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .login-header h3 {
        font-size: 1.4rem;
    }
}

.page-hero {
    padding: 120px 0 40px;
    text-align: center;
}

.balance-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-top: 20px;
}

.balance-banner span {
    color: rgba(255, 255, 255, 0.7);
}

.balance-banner strong {
    color: #00ff88;
    font-size: 1.2rem;
}

.services-section {
    padding: 40px 0 80px;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 14px 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: white;
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.category-header {
    grid-column: 1 / -1;
    padding: 20px 0 10px;
}

.category-header h3 {
    color: var(--primary);
    font-size: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(225, 48, 108, 0.3);
}

.service-card.unavailable {
    opacity: 0.7;
}

.service-card.service-unavailable {
    opacity: 0.85;
    border-color: rgba(255, 152, 0, 0.3);
}

.service-card.service-unavailable:hover {
    border-color: rgba(255, 152, 0, 0.5);
}

.unavailable-badge {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.available-badge {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 200, 83, 0.3);
}

.service-quantity {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.order-btn.unavailable-redirect {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    cursor: pointer;
}

.order-btn.unavailable-redirect:hover {
    background: linear-gradient(135deg, #ffa726, #ff7043);
    transform: translateY(-2px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.service-header h3 {
    font-size: 1.1rem;
    flex: 1;
}

.out-of-stock-badge {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.service-price {
    margin-bottom: 12px;
}

.service-price .currency {
    font-size: 1rem;
    color: var(--primary);
}

.service-price .amount {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-price .per {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.service-range {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.order-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.3);
}

.order-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.order-btn.login-required {
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.empty-services {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.order-modal.show {
    display: flex;
}

.order-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.order-content {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.98), rgba(20, 20, 35, 0.99));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
}

.order-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.order-header {
    text-align: center;
    margin-bottom: 25px;
}

.order-header h3 {
    font-size: 1.3rem;
}

.order-input-group {
    margin-bottom: 20px;
}

.order-input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.order-input-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    color: white;
}

.order-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.quantity-range {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.order-total, .order-balance {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--glass-border);
}

.order-total strong {
    color: #00ff88;
    font-size: 1.3rem;
}

.order-error {
    display: none;
    color: #ff4757;
    font-size: 0.85rem;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 8px;
}

.order-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00c853, #00e676);
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.order-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
}

.contact-section {
    padding: 40px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-wrapper .main-card {
    max-width: none;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    color: white;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.confirm-email-section {
    margin-bottom: 20px;
}

.confirm-email-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.confirm-email-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    color: white;
}

.confirm-email-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.confirm-email-error {
    color: #ff4757;
    font-size: 0.85rem;
    margin-top: 8px;
}

.confirm-email-input.input-error {
    border-color: #ff4757;
}

.confirm-terms-section {
    margin-bottom: 20px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.confirm-terms-section.terms-error {
    border-color: #ff4757;
}

.terms-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.terms-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.terms-checkmark {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.terms-checkbox:checked + .terms-checkmark {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}

.terms-checkbox:checked + .terms-checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.terms-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.terms-link {
    color: #ff69b4 !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: none !important;
}

.terms-link:hover {
    color: #ff85c0 !important;
}

.confirm-terms-section.terms-error .terms-checkmark {
    border-color: #ff4757 !important;
    background: rgba(255, 71, 87, 0.1);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 100px 0 30px;
    }
}
    
    .main-card {
        padding: 30px 20px;
        border-radius: 24px;
    }
    
    .followers-count {
        font-size: 3rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        min-width: unset;
        width: 100%;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .slider-labels {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .slider-label {
        flex: 0 0 calc(33.33% - 8px);
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .notifications-container {
        left: 10px;
        max-width: 200px;
    }
    
    .confirm-modal {
        padding: 10px;
    }
    
    .confirm-content {
        padding: 20px 15px;
        max-height: 85vh;
        border-radius: 20px;
    }
    
    .confirm-header {
        margin-bottom: 15px;
    }
    
    .confirm-header h3 {
        font-size: 1.1rem;
    }
    
    .confirm-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
        border-radius: 14px;
    }
    
    .confirm-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .confirm-close {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .confirm-profile {
        padding: 12px 15px;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .confirm-avatar {
        width: 45px;
        height: 45px;
    }
    
    .confirm-name {
        font-size: 1rem;
    }
    
    .confirm-username {
        font-size: 0.8rem;
    }
    
    .confirm-stats {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .confirm-stat {
        padding: 12px 15px;
        min-width: 75px;
    }
    
    .confirm-stat-value {
        font-size: 1.1rem;
    }
    
    .confirm-stat-label {
        font-size: 0.6rem;
    }
    
    .confirm-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .confirm-order-details {
        margin-bottom: 15px;
    }
    
    .confirm-detail-row {
        padding: 12px 15px;
    }
    
    .confirm-detail-label {
        font-size: 0.85rem;
    }
    
    .confirm-detail-value {
        font-size: 0.95rem;
    }
    
    .confirm-detail-value.price {
        font-size: 1.1rem;
    }
    
    .confirm-submit-btn {
        padding: 14px;
        font-size: 0.95rem;
    }
}

.simple-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #00c853, #00a844);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
    animation: toastSlide 0.4s ease forwards;
}

.simple-toast i {
    font-size: 1rem;
}

@keyframes toastSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
