/* ===== MOBILE-FIRST RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0f;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.5;
    max-width: 100vw;
    position: relative;
}

/* ===== ANIMATED BACKGROUND (Mobile Optimized) ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vh;
    opacity: 0.03;
    z-index: -1;
}

.background-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: blur(15px);
}

/* Mobile-optimized balls */
.ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    animation-timing-function: ease-in-out;
    mix-blend-mode: screen;
    will-change: transform;
}

.ball-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    background: radial-gradient(circle, #ff2a6d 0%, transparent 70%);
    animation: float-mobile-1 25s infinite alternate;
}

.ball-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
    background: radial-gradient(circle, #05d9e8 0%, transparent 70%);
    animation: float-mobile-2 30s infinite alternate-reverse;
    animation-delay: 2s;
}

.ball-3 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 10%;
    background: radial-gradient(circle, #ffcc00 0%, transparent 70%);
    animation: float-mobile-3 20s infinite alternate;
    animation-delay: 5s;
}

.ball-4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    left: 60%;
    background: radial-gradient(circle, #8a2be2 0%, transparent 70%);
    animation: float-mobile-4 35s infinite alternate-reverse;
    animation-delay: 3s;
}

/* Mobile-optimized lines */
.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #ff2a6d, transparent);
    opacity: 0.05;
    animation-timing-function: linear;
    will-change: transform;
}

.line-1 {
    top: 20%;
    left: -50%;
    width: 200%;
    height: 1px;
    transform: rotate(15deg);
    animation: slide-mobile-1 15s infinite linear;
}

.line-2 {
    top: 40%;
    left: -50%;
    width: 200%;
    height: 1px;
    transform: rotate(-15deg);
    background: linear-gradient(90deg, transparent, #05d9e8, transparent);
    animation: slide-mobile-2 20s infinite linear;
    animation-delay: 1s;
}

.line-3 {
    top: 60%;
    left: -50%;
    width: 200%;
    height: 1px;
    transform: rotate(25deg);
    background: linear-gradient(90deg, transparent, #ffcc00, transparent);
    animation: slide-mobile-3 18s infinite linear;
    animation-delay: 3s;
}

.line-4 {
    top: -50%;
    left: 20%;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, transparent, #ff2a6d, transparent);
    animation: slide-vertical-mobile-1 12s infinite linear;
}

.line-5 {
    top: -50%;
    left: 50%;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, transparent, #05d9e8, transparent);
    animation: slide-vertical-mobile-2 16s infinite linear;
    animation-delay: 2s;
}

.line-6 {
    top: -50%;
    left: 80%;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, transparent, #ffcc00, transparent);
    animation: slide-vertical-mobile-3 14s infinite linear;
    animation-delay: 4s;
}

/* Mobile animations */
@keyframes float-mobile-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 40px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes float-mobile-2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, 30px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes float-mobile-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -30px); }
}

@keyframes float-mobile-4 {
    0% { transform: translate(0, 0); opacity: 0.1; }
    50% { transform: translate(-30px, 40px); opacity: 0.2; }
    100% { transform: translate(0, 0); opacity: 0.1; }
}

@keyframes slide-mobile-1 {
    0% { transform: translateX(-100%) rotate(15deg); }
    100% { transform: translateX(100%) rotate(15deg); }
}

@keyframes slide-mobile-2 {
    0% { transform: translateX(-100%) rotate(-15deg); }
    100% { transform: translateX(100%) rotate(-15deg); }
}

@keyframes slide-mobile-3 {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

@keyframes slide-vertical-mobile-1 {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes slide-vertical-mobile-2 {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes slide-vertical-mobile-3 {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* ===== NAVIGATION (Mobile First) ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
}

/* Menu Toggle Button */
.menu-logo-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: auto;
    flex-shrink: 0;
}

.menu-logo-toggle:hover {
    background: rgba(255, 42, 109, 0.2);
    border-color: #ff2a6d;
}

.menu-logo-toggle.active {
    background: rgba(255, 42, 109, 0.3);
    transform: rotate(90deg);
}

.menu-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff2a6d;
    transition: transform 0.5s ease;
}

.menu-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 18px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-logo-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-logo-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-logo-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Main Logo */
.main-logo {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff2a6d, #05d9e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.1);
}

.social-icon.telegram { background-color: #0088cc; }
.social-icon.whatsapp { background-color: #25D366; }
.social-icon.github { background-color: #f5f5f5; color: #333; }
.social-icon.youtube { background-color: #ff0000; }

/* Dropdown Menu */
.dropdown-menu {
    position: fixed;
    top: 60px;
    left: 15px;
    right: 15px;
    background: rgba(18, 18, 24, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-width: calc(100vw - 30px);
}

.dropdown-menu.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-header h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-menu {
    background: none;
    border: none;
    color: #b0b0c0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    color: #ff2a6d;
    transform: rotate(90deg);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-link:hover {
    background: rgba(255, 42, 109, 0.2);
    transform: translateX(5px);
}

.menu-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.menu-social {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-social h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #b0b0c0;
}

.menu-social-icons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-social-icons a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.menu-social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

/* ===== HERO SECTION (Mobile First) ===== */
.hero {
    padding: 80px 15px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.hero-text {
    width: 100%;
    text-align: center;
    max-width: 100%;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

.highlight {
    background: linear-gradient(45deg, #ff2a6d, #05d9e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1rem;
    color: #b0b0c0;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff2a6d, #05d9e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: #b0b0c0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #ff2a6d, #ff0055);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 42, 109, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 42, 109, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #05d9e8;
    box-shadow: 0 0 15px rgba(5, 217, 232, 0.2);
}

.btn-secondary:hover {
    background: rgba(5, 217, 232, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(5, 217, 232, 0.3);
}

.hero-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.bot-showcase {
    background: rgba(18, 18, 24, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-header h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-indicator {
    display: flex;
    gap: 6px;
}

.showcase-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b0b0c0;
    transition: all 0.3s ease;
}

.showcase-indicator span.active {
    background: #ff2a6d;
    transform: scale(1.2);
}

.bot-preview {
    display: none;
}

.bot-preview.active {
    display: block;
    animation: fadeInMobile 0.5s ease;
}

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

.preview-image {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-info {
    text-align: center;
}

.preview-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.preview-info p {
    color: #b0b0c0;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn-preview {
    width: 100%;
    background: #05d9e8;
    color: white;
    font-size: 0.9rem;
    padding: 12px 20px;
}

.btn-preview:hover {
    background: #04c4d2;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceMobile 2s infinite;
    display: none;
}

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

.scroll-indicator i {
    font-size: 1.5rem;
    color: #05d9e8;
}

/* ===== SECTIONS (Mobile First) ===== */
.section {
    padding: 60px 15px;
    max-width: 100%;
    margin: 0 auto;
}

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

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding: 0 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #b0b0c0;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
    line-height: 1.6;
}

/* ===== BOTS SECTION ===== */
.bots-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.bot-card {
    background: rgba(18, 18, 24, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.bot-card:hover {
    transform: translateY(-5px);
    border-color: #ff2a6d;
    box-shadow: 0 10px 30px rgba(255, 42, 109, 0.2);
}

.bot-card-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.bot-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ff2a6d;
    flex-shrink: 0;
}

.bot-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-title {
    flex: 1;
    min-width: 150px;
}

.bot-title h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.bot-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bot-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bot-status {
    background: rgba(0, 255, 157, 0.2);
    color: #00ff9d;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bot-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #25D366;
    flex-shrink: 0;
}

.bot-platform i {
    font-size: 1.5rem;
}

.bot-platform span {
    font-size: 0.8rem;
}

.bot-card-body {
    padding: 20px;
}

.bot-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.feature i {
    color: #00ff9d;
    font-size: 0.9rem;
}

.bot-description {
    color: #b0b0c0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.bot-card-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
}

.bot-card-footer .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
}

/* Deployment Options */
.deployment-options {
    background: rgba(18, 18, 24, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideUpMobile 0.5s ease;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@keyframes slideUpMobile {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.deployment-options.active {
    display: block;
}

.deployment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deployment-header h3 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-deployment {
    background: none;
    border: none;
    color: #b0b0c0;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-deployment:hover {
    color: #ff2a6d;
    transform: rotate(90deg);
}

.deployment-plans {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.deployment-plan {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.deployment-plan:hover {
    border-color: #ff2a6d;
    transform: translateY(-3px);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plan-header h4 {
    font-size: 1.3rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff2a6d, #05d9e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.plan-features .fa-check {
    color: #00ff9d;
}

.plan-features .fa-times {
    color: #ff4444;
}

/* ===== APPS SECTION ===== */
.apps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.app-card {
    background: rgba(18, 18, 24, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: #ff2a6d;
    box-shadow: 0 10px 25px rgba(255, 42, 109, 0.2);
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff2a6d, #05d9e8);
}

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff2a6d, #05d9e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 42, 109, 0.3);
}

.app-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.app-description {
    color: #b0b0c0;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
    padding: 0 5px;
}

.app-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.app-features span {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-features i {
    color: #00ff9d;
    font-size: 0.8rem;
}

.app-price {
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff2a6d, #05d9e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.period {
    color: #b0b0c0;
    font-size: 0.8rem;
}

.btn-purchase {
    width: 100%;
    background: #ff2a6d;
    color: white;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.btn-purchase:hover {
    background: #ff0055;
}

/* ===== TOOLS SECTION ===== */
.tools-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.tool-card {
    background: rgba(18, 18, 24, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tool-card:hover {
    border-color: #05d9e8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(5, 217, 232, 0.2);
}

.tool-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #05d9e8, #ff2a6d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.tool-info {
    width: 100%;
}

.tool-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.tool-info p {
    color: #b0b0c0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.btn-tool {
    background: #05d9e8;
    color: white;
    width: 100%;
    max-width: 200px;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.btn-tool:hover {
    background: #04c4d2;
}

/* ===== FOOTER ===== */
.footer {
    background: #050508;
    padding: 50px 15px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    width: 100%;
}

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

.footer-logo-images {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.footer-logo-images img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff2a6d;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: center;
    background: linear-gradient(45deg, #ff2a6d, #05d9e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: #b0b0c0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff2a6d, #05d9e8);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-links li {
    width: 100%;
    max-width: 200px;
}

.footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-links a:hover {
    color: #ff2a6d;
    background: rgba(255, 42, 109, 0.1);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 250px;
}

.contact-item:hover {
    color: #ff2a6d;
    background: rgba(255, 42, 109, 0.1);
    transform: translateX(5px);
}

.payment-info {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.payment-info p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0c0;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 250px;
}

.btn-telegram {
    background: #0088cc;
    color: white;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
    padding: 14px 20px;
    font-size: 0.9rem;
}

.btn-telegram:hover {
    background: #0099ff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #b0b0c0;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    max-width: 500px;
    margin: 20px auto 0;
    line-height: 1.5;
    padding: 0 15px;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.modal {
    background: rgba(18, 18, 24, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideMobile 0.4s ease;
}

@keyframes modalSlideMobile {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    color: #b0b0c0;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #ff2a6d;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px 20px;
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff2a6d, #05d9e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(255, 42, 109, 0.3);
}

.modal-body h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.modal-body p {
    color: #b0b0c0;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.modal-price {
    font-size: 2rem;
    margin: 25px 0;
    background: linear-gradient(45deg, #ff2a6d, #05d9e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 25px;
    display: flex;
    gap: 12px;
    text-align: left;
    font-size: 0.85rem;
}

.modal-note i {
    color: #ffaa00;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-cancel {
    background: transparent;
    color: #ffffff;
    border: 2px solid #b0b0c0;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
}

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

.btn-confirm {
    background: #0088cc;
    color: white;
    width: 100%;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.btn-confirm:hover {
    background: #0099ff;
}

/* ===== DESKTOP MEDIA QUERIES ===== */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .nav-container {
        padding: 0 40px;
        gap: 20px;
    }

    .menu-logo-toggle {
        padding: 10px 20px;
    }

    .menu-text {
        display: inline;
        font-size: 1rem;
    }

    .menu-logo-img {
        width: 40px;
        height: 40px;
    }

    .hamburger {
        width: 24px;
        gap: 4px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .dropdown-menu {
        width: 350px;
        left: 40px;
        right: auto;
    }

    .hero {
        padding: 120px 40px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: row;
        max-width: 400px;
    }

    .btn {
        width: auto;
        padding: 16px 30px;
    }

    .hero-visual {
        max-width: 450px;
    }

    .bot-showcase {
        padding: 30px;
    }

    .preview-image {
        height: 180px;
    }

    .section {
        padding: 80px 40px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .bots-container {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }

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

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-section {
        width: calc(50% - 20px);
    }

    .footer-logo-images {
        justify-content: flex-start;
    }

    .footer-logo h3 {
        text-align: left;
    }

    .footer-logo p {
        text-align: left;
    }

    .footer-section h4 {
        text-align: left;
    }

    .footer-section h4::after {
        left: 0;
        transform: none;
    }

    .footer-links {
        align-items: flex-start;
    }

    .footer-links li {
        max-width: 100%;
    }

    .footer-links a {
        justify-content: flex-start;
    }

    .contact-info {
        align-items: flex-start;
    }

    .contact-item {
        max-width: 100%;
    }

    .payment-info {
        align-items: flex-start;
    }

    .payment-info p {
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        gap: 60px;
    }

    .hero-text {
        text-align: left;
        max-width: 50%;
    }

    .hero-title {
        text-align: left;
        font-size: 3rem;
    }

    .hero-subtitle {
        text-align: left;
        padding: 0;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-buttons {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0;
    }

    .scroll-indicator {
        display: block;
    }

    .ball-1 {
        width: 300px;
        height: 300px;
    }

    .ball-2 {
        width: 250px;
        height: 250px;
    }

    .ball-3 {
        width: 200px;
        height: 200px;
    }

    .ball-4 {
        width: 280px;
        height: 280px;
    }

    .apps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        flex-wrap: nowrap;
        gap: 40px;
    }

    .footer-section {
        width: auto;
        flex: 1;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* ===== PERFORMANCE OPTIMIZATION ===== */
@media (prefers-reduced-motion: reduce) {
    .ball, .line, .bot-card, .app-card, .tool-card, .btn, .menu-link, 
    .social-icon, .modal, .deployment-plan, .menu-logo-toggle {
        animation: none !important;
        transition: none !important;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATION ===== */
@media (hover: none) {
    .bot-card:hover, .app-card:hover, .tool-card:hover, 
    .btn:hover, .menu-link:hover, .social-icon:hover,
    .footer-links a:hover, .contact-item:hover {
        transform: none !important;
    }

    .bot-card:active, .app-card:active, .btn:active {
        transform: scale(0.98) !important;
    }
}

/* ===== SAFARI FIXES ===== */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }

    .bg-animation {
        height: -webkit-fill-available;
    }
}