/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #64748b;
    --accent-color: #00ff88;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --danger-color: #ff4444;
    --dark-color: #0a0a0a;
    --light-color: #1a1a1a;
    --gray-50: #1a1a1a;
    --gray-100: #1f1f1f;
    --gray-200: #2a2a2a;
    --gray-300: #3a3a3a;
    --gray-400: #4a4a4a;
    --gray-500: #6b7280;
    --gray-600: #8a8a8a;
    --gray-700: #b0b0b0;
    --gray-800: #e0e0e0;
    --gray-900: #ffffff;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-radius: 8px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo i {
    margin-right: 8px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

.ddos-simulation {
    position: relative;
    width: 450px;
    height: 450px;
    perspective: 1000px;
    will-change: transform;
    transform: translateZ(0); /* Force hardware acceleration */
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    animation: modernShieldPulse 3s infinite;
    z-index: 10;
    position: relative;
}

.shield-core::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: shieldRing1 4s infinite;
}

.shield-core::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    animation: shieldRing2 6s infinite reverse;
}

.shield-core i {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.shield-status {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.protection-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary-color);
    border-right: 3px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: modernRotate 20s linear infinite;
}

.attack-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.attack-wave {
    position: absolute;
    opacity: 0;
    animation: modernAttackWave 5s infinite;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.attack-wave.malicious {
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.attack-wave.legitimate {
    animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.attack-wave:nth-child(1) { animation-delay: 0s; }
.attack-wave:nth-child(2) { animation-delay: 1.2s; }
.attack-wave:nth-child(3) { animation-delay: 2.4s; }
.attack-wave:nth-child(4) { animation-delay: 0.8s; }
.attack-wave:nth-child(5) { animation-delay: 2s; }

.attack-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 15px currentColor,
        0 0 30px currentColor,
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    animation: dotPulse 2s infinite;
}

.attack-dot::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid currentColor;
    border-radius: 50%;
    top: -5px;
    left: -5px;
    opacity: 0.3;
    animation: dotRing 3s infinite;
}

.bot-attack {
    background: #ff4444;
    color: #ff4444;
}

.ddos-attack {
    background: #ff6b35;
    color: #ff6b35;
}

.spam-attack {
    background: #ffaa00;
    color: #ffaa00;
}

.user-traffic {
    background: var(--success-color);
    color: var(--success-color);
}

.attack-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid currentColor;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: labelFloat 3s infinite;
}

.status-messages {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 20;
}

.status-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-15px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.status-message.blocked {
    background: rgba(255, 68, 68, 0.15);
    color: var(--danger-color);
    border: 2px solid rgba(255, 68, 68, 0.4);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

.status-message.allowed {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
    border: 2px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.status-message.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.live-stats {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 20;
}

.stat-item {
    text-align: center;
    background: rgba(42, 42, 42, 0.8);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    min-width: 120px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: statFloat 4s infinite;
}

.stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    animation-delay: 2s;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px currentColor;
    animation: valueGlow 2s infinite;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Dashboard Preview */
.dashboard-preview {
    padding: 80px 0;
    background: var(--bg-primary);
}

.dashboard-mockup {
    background: var(--bg-tertiary);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.dashboard-header {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success-color);
    animation: pulse 2s infinite;
}

.dashboard-content {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.metric-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.metric-change {
    font-size: 0.875rem;
    font-weight: 600;
}

.metric-change.positive {
    color: var(--success-color);
}

.metric-change.negative {
    color: var(--danger-color);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-tertiary);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: var(--success-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-primary);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.telegram-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.telegram-card {
    background: var(--bg-tertiary);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.telegram-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.telegram-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0088cc, #229ED9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: telegramPulse 3s infinite;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
    position: relative;
}

.telegram-icon::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(0, 136, 204, 0.3);
    border-radius: 50%;
    animation: telegramRing 4s infinite;
}

.telegram-icon i {
    font-size: 3.5rem;
    color: white;
    z-index: 2;
}

.telegram-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.telegram-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.telegram-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.telegram-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.telegram-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.telegram-advantages {
    list-style: none;
    margin-bottom: 2rem;
}

.telegram-advantages li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.telegram-advantages i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.response-time {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.response-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.response-badge i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.response-badge .time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.response-badge .label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: block;
}


/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 60px 0 20px;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-300);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

/* Animations */
@keyframes shieldPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes modernAttackWave {
    0% {
        opacity: 0;
        transform: scale(0.3) translateX(-250px) rotateY(-90deg);
    }
    15% {
        opacity: 0.8;
        transform: scale(0.8) translateX(-150px) rotateY(-45deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) translateX(0) rotateY(0deg);
    }
    85% {
        opacity: 0.8;
        transform: scale(0.8) translateX(150px) rotateY(45deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translateX(250px) rotateY(90deg);
    }
}

@keyframes modernShieldPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.5),
            0 0 60px rgba(0, 212, 255, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 
            0 0 40px rgba(0, 212, 255, 0.7),
            0 0 80px rgba(0, 212, 255, 0.5),
            inset 0 0 40px rgba(255, 255, 255, 0.2);
    }
}

@keyframes modernRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes shieldRing1 {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes shieldRing2 {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.05;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

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

@keyframes dotRing {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

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

@keyframes valueGlow {
    0%, 100% {
        text-shadow: 0 0 15px currentColor;
    }
    50% {
        text-shadow: 0 0 25px currentColor, 0 0 35px currentColor;
    }
}

@keyframes effectBurst {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes telegramPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
    }
}

@keyframes telegramRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Attack positioning */
.attack-wave:nth-child(1) {
    top: 10%;
    left: 10%;
}

.attack-wave:nth-child(2) {
    top: 30%;
    right: 10%;
}

.attack-wave:nth-child(3) {
    bottom: 30%;
    left: 15%;
}

.attack-wave:nth-child(4) {
    top: 60%;
    right: 20%;
}

.attack-wave:nth-child(5) {
    bottom: 10%;
    right: 15%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    /* DDoS Animation Mobile */
    .ddos-simulation {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    
    .shield-core {
        width: 120px;
        height: 120px;
    }
    
    .shield-core i {
        font-size: 2.5rem;
    }
    
    .shield-status {
        font-size: 0.7rem;
    }
    
    .protection-ring {
        width: 200px;
        height: 200px;
    }
    
    .status-messages {
        top: -50px;
    }
    
    .status-message {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .live-stats {
        bottom: -60px;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ddos-simulation {
        width: 300px;
        height: 300px;
    }
    
    .shield-core {
        width: 100px;
        height: 100px;
    }
    
    .shield-core i {
        font-size: 2rem;
    }
    
    .protection-ring {
        width: 160px;
        height: 160px;
    }
    
    .live-stats {
        bottom: -60px;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }
    
    /* Telegram Contact Mobile */
    .telegram-contact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .telegram-card {
        padding: 2rem 1.5rem;
    }
    
    .telegram-icon {
        width: 100px;
        height: 100px;
    }
    
    .telegram-icon i {
        font-size: 3rem;
    }
    
    .telegram-card h3 {
        font-size: 1.8rem;
    }
    
    .telegram-card p {
        font-size: 1rem;
    }
    
    .telegram-buttons {
        gap: 0.75rem;
    }
    
    .telegram-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .telegram-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .feature-item i {
        font-size: 1.25rem;
    }
    
    .feature-item span {
        font-size: 0.8rem;
    }
    
    .telegram-info h4 {
        font-size: 1.3rem;
    }
    
    .telegram-advantages li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .response-time {
        padding: 1.5rem;
    }
    
    .response-badge .time {
        font-size: 1.3rem;
    }
    
    .response-badge .label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .features,
    .pricing,
    .contact {
        padding: 50px 0;
    }
    
    /* Ultra Mobile DDoS Animation */
    .ddos-simulation {
        width: 280px;
        height: 280px;
    }
    
    .shield-core {
        width: 90px;
        height: 90px;
    }
    
    .shield-core i {
        font-size: 2rem;
    }
    
    .shield-status {
        font-size: 0.6rem;
    }
    
    .protection-ring {
        width: 140px;
        height: 140px;
    }
    
    .status-messages {
        top: -35px;
    }
    
    .status-message {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .live-stats {
        bottom: -35px;
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.75rem 1rem;
        min-width: 70px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    /* Ultra Mobile Telegram */
    .telegram-card {
        padding: 1.5rem 1rem;
    }
    
    .telegram-icon {
        width: 80px;
        height: 80px;
    }
    
    .telegram-icon i {
        font-size: 2.5rem;
    }
    
    .telegram-card h3 {
        font-size: 1.5rem;
    }
    
    .telegram-card p {
        font-size: 0.9rem;
    }
    
    .telegram-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .telegram-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.5rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .feature-item span {
        font-size: 0.75rem;
    }
    
    .telegram-info h4 {
        font-size: 1.2rem;
    }
    
    .telegram-advantages li {
        font-size: 0.85rem;
    }
    
    .response-time {
        padding: 1rem;
    }
    
    .response-badge .time {
        font-size: 1.1rem;
    }
    
    .response-badge .label {
        font-size: 0.75rem;
    }
}
