/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #030101;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== BACKGROUND ========== */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, #1a0a0a, #000000 90%);
    z-index: -3;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.orb1 {
    top: 10%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: #b91c1c;
}

.orb2 {
    bottom: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: #ef4444;
    animation-delay: -5s;
}

.orb3 {
    top: 40%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: #dc2626;
    animation-delay: -10s;
}

@keyframes float {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-30px) scale(1.1); }
    66% { transform: translate(-20px,20px) scale(0.9); }
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(185,28,28,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185,28,28,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wMiIgLz48L3N2Zz4=');
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #030101;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(185,28,28,0.3);
    border-top-color: #b91c1c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== PROGRESS BAR ========== */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #b91c1c, #ef4444);
    width: 0%;
    transition: width 0.1s ease;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    background: rgba(10,5,5,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(185,28,28,0.3);
    border-radius: 100px;
    padding: 12px 24px;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5,3,3,0.95);
    border-color: #b91c1c;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #ffa0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-badge {
    background: rgba(185,28,28,0.2);
    border: 1px solid #b91c1c;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 12px;
    color: #ffa0a0;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: #d0d0d0;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #b91c1c;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-social {
    display: flex;
    gap: 12px;
}

.social-link {
    color: #d0d0d0;
    font-size: 18px;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #b91c1c;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5,3,3,0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(185,28,28,0.3);
}

.mobile-menu-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #808080;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-menu-close:hover {
    color: #b91c1c;
}

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mobile-link {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: #b91c1c;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(185,28,28,0.3);
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.mobile-social-link {
    color: #d0d0d0;
    font-size: 24px;
    transition: color 0.2s ease;
}

.mobile-social-link:hover {
    color: #b91c1c;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
}

.hero-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(20,10,10,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(185,28,28,0.3);
    padding: 8px 20px;
    border-radius: 60px;
    color: #ffd0d0;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 120px;
    font-weight: 900;
    line-height: 0.9;
    background: linear-gradient(135deg, #fff, #ffb0b0, #ff8080, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero-title { font-size: 70px; }
}

.hero-description {
    font-size: 18px;
    color: #c0c0c0;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d0d0d0;
    font-size: 14px;
    background: rgba(255,255,255,0.03);
    padding: 6px 16px;
    border-radius: 40px;
    border: 1px solid rgba(185,28,28,0.2);
}

.hero-feature i {
    color: #4caf50;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #a0a0a0;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    border: none;
    border-radius: 60px;
    padding: 14px 40px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(185,28,28,0.5);
    border-radius: 60px;
    padding: 14px 40px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: rgba(185,28,28,0.1);
    border-color: #b91c1c;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(185,28,28,0.5);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: #b91c1c;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.scroll-text {
    font-size: 12px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: #b91c1c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(185,28,28,0.1);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title { font-size: 32px; }
}

.section-description {
    color: #a0a0a0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== TOOLS SECTION ========== */
.tools {
    padding: 80px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tool-card {
    background: rgba(20,15,15,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(185,28,28,0.2);
    border-radius: 30px;
    padding: 30px 25px;
    transition: all 0.2s ease;
}

.tool-card:hover {
    border-color: #b91c1c;
    transform: translateY(-5px);
}

.tool-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tool-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.tool-description {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-badge {
    background: rgba(185,28,28,0.1);
    border: 1px solid #b91c1c;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    color: #ffb0b0;
}

.tool-badge.popular {
    background: rgba(185,28,28,0.3);
    color: #fff;
}

.tool-badge.exclusive {
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    color: #fff;
}

.btn-tool {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(185,28,28,0.3);
    border-radius: 40px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-tool:hover {
    background: rgba(185,28,28,0.1);
    border-color: #b91c1c;
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
    background: rgba(15,10,10,0.5);
    border: 1px solid rgba(185,28,28,0.2);
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: #b91c1c;
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(185,28,28,0.1);
    border: 1px solid #b91c1c;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon {
    font-size: 28px;
    color: #b91c1c;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-description {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

/* ========== REVIEWS SECTION ========== */
.reviews {
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
    background: rgba(20,15,15,0.6);
    border: 1px solid rgba(185,28,28,0.2);
    border-radius: 30px;
    padding: 30px;
    text-align: center;
}

.review-rating {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #b91c1c;
}

.review-info {
    flex: 1;
}

.review-name {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    margin-bottom: 2px;
}

.review-role {
    display: block;
    color: #a0a0a0;
    font-size: 12px;
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15,10,10,0.6);
    border: 1px solid rgba(185,28,28,0.2);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    color: #b91c1c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 18px;
}

/* ========== CTA SECTION ========== */
.cta {
    padding: 80px 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(20,15,15,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #b91c1c;
    border-radius: 40px;
    padding: 50px 30px;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.cta-text {
    color: #b0b0b0;
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-cta {
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    border: none;
    border-radius: 60px;
    padding: 16px 50px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(5,3,3,0.95);
    border-top: 1px solid rgba(185,28,28,0.3);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #ffa0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.footer-description {
    color: #b0b0b0;
    font-size: 14px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    color: #b0b0b0;
    font-size: 20px;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: #b91c1c;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(185,28,28,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #808080;
    font-size: 14px;
}

.footer-version {
    color: #4caf50;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-version:hover {
    color: #b91c1c;
}

/* ========== REFERRAL PANEL ========== */
.referral-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.referral-panel.active {
    display: flex;
}

.referral-panel-content {
    position: relative;
    width: 400px;
    max-width: 95%;
    background: #1a1a1a;
    border: 2px solid #b91c1c;
    border-radius: 30px;
    padding: 30px;
    z-index: 2001;
}

.referral-panel-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #808080;
    font-size: 28px;
    cursor: pointer;
}

.referral-panel-close:hover {
    color: #b91c1c;
}

.referral-panel-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.referral-form .form-group {
    margin-bottom: 20px;
}

.referral-form label {
    display: block;
    margin-bottom: 8px;
    color: #d0d0d0;
    font-size: 14px;
    font-weight: 600;
}

.referral-form .form-control {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 20px;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.referral-form .form-control:focus {
    border-color: #b91c1c;
}

.referral-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.referral-actions button {
    flex: 1;
    padding: 12px;
    font-size: 14px;
}

.referral-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    font-size: 13px;
    min-height: 40px;
}

.cf-turnstile {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

/* ========== MODALS ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 450px;
    max-width: 95%;
    background: #1a1a1a;
    border: 2px solid #b91c1c;
    border-radius: 30px;
    padding: 30px;
    z-index: 1001;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 22px;
    color: #fff;
}

.modal-close {
    background: none;
    border: none;
    color: #808080;
    font-size: 28px;
    cursor: pointer;
}

.modal-close:hover {
    color: #b91c1c;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body label {
    display: block;
    margin-bottom: 8px;
    color: #d0d0d0;
    font-size: 14px;
    font-weight: 600;
}

.modal-body .optional {
    color: #808080;
    font-size: 12px;
    margin-left: 5px;
}

.modal-body .form-control {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 20px;
    padding: 12px 15px;
    color: #fff;
    font-size: 14px;
    outline: none;
    font-family: 'JetBrains Mono', monospace;
}

.modal-body textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: #b91c1c;
    border: none;
    border-radius: 40px;
    padding: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #dc2626;
}

.status-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    font-size: 13px;
    min-height: 40px;
}

/* ========== TOAST ========== */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #1a1a1a;
    border: 1px solid #b91c1c;
    border-radius: 40px;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
    max-width: 350px;
}

.toast.success { border-color: #4caf50; }
.toast.error { border-color: #ef4444; }
.toast.info { border-color: #3b82f6; }

.toast.success .toast-icon { color: #4caf50; }
.toast.error .toast-icon { color: #ef4444; }
.toast.info .toast-icon { color: #3b82f6; }

.toast-icon { font-size: 18px; }
.toast-message { flex: 1; }
.toast-close { background: none; border: none; color: #808080; font-size: 18px; cursor: pointer; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ========== ANIMATIONS ========== */
.status-message.loading,
.referral-message.loading {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    color: #ffc107;
    animation: pulse 1.5s infinite;
}

.status-message.success,
.referral-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    color: #28a745;
    animation: successPop 0.5s ease;
}

.status-message.duplicate,
.referral-message.duplicate {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    color: #ffc107;
}

.status-message.error,
.referral-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
    animation: errorShake 0.5s ease;
}

@keyframes pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes successPop {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes errorShake {
    0%,100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.floating-emoji {
    position: fixed;
    bottom: 0;
    font-size: 24px;
    pointer-events: none;
    z-index: 9999;
    animation: floatUp 2s linear forwards;
}

@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.loading-dots::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
    width: 20px;
    display: inline-block;
    margin-left: 4px;
}

@keyframes dots {
    0%,20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%,100% { content: '...'; }
}

/* ========== ЗВЕЗДОЧКИ ДЛЯ СЕССИЙ ========== */
textarea#gameSession,
textarea#voiceSession,
textarea#deleteSession,
textarea#visitsSession,
textarea#nicknameSession,
textarea#badgeSession,
textarea#subscribersSession {
    -webkit-text-security: disc !important;
    text-security: disc !important;
    font-family: 'JetBrains Mono', monospace;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .nav-links, .nav-social { display: none; }
    .mobile-menu-btn { display: flex; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 70px; }
    .hero-stats { gap: 20px; }
    .stat-value { font-size: 24px; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-description { margin: 0 auto; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 50px; }
    .hero-features { flex-direction: column; align-items: center; }
    .hero-feature { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .stat-item { width: 100%; }
    .section-title { font-size: 28px; }
}