* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.content-left {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.subtitle {
    color: #ff3333;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #ff3333;
}

.description {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.btn {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff3333;
    color: #ffffff;
    border: 2px solid #ff3333;
}

.btn-primary:hover {
    background-color: #cc0000;
    border-color: #cc0000;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #333;
}

.btn-secondary:hover {
    border-color: #ffffff;
}

.footer-stats {
    font-size: 0.8rem;
    color: #666;
}

.footer-stats span:first-child {
    color: #4caf50; /* Yaşıl rəngdə aktiv status */
}

/* Radar Animasiyası */
.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.radar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,51,51,0.05) 0%, rgba(13,13,13,0) 70%);
    border: 1px solid rgba(255, 51, 51, 0.2);
    position: relative;
    overflow: hidden;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 51, 51, 0.1);
    border-radius: 50%;
}

.circle-1 { width: 300px; height: 300px; }
.circle-2 { width: 400px; height: 400px; }
.circle-3 { width: 500px; height: 500px; border: 2px dashed rgba(255, 51, 51, 0.2); }

.sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: conic-gradient(from 0deg, rgba(255,51,51,0) 0deg, rgba(255,51,51,0.4) 90deg, rgba(255,51,51,0) 90deg);
    transform-origin: 0 0;
    animation: scan 4s linear infinite;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px #ff3333;
    opacity: 0;
    animation: blink 4s infinite;
}

.dot-1 { top: 30%; left: 60%; animation-delay: 0.5s; }
.dot-2 { top: 60%; left: 30%; animation-delay: 1.5s; }
.dot-3 { top: 40%; left: 20%; animation-delay: 2.5s; }

@keyframes scan {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    10%, 30% { opacity: 1; }
}
