@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-color: #ff3a5e;
    --secondary-color: #00e8ff;
    --bg-color: #0a0a15;
    --text-color: #ffffff;
    --accent-color: #5c31ff;
    --dark-accent: #1d1836;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    cursor: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 232, 255, 0.5);
}

.target-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
}

.outer {
    width: 40px;
    height: 40px;
    border-color: var(--primary-color);
    animation: pulse 2s infinite;
}

.inner {
    width: 20px;
    height: 20px;
    top: 10px;
    left: 10px;
    border-color: var(--secondary-color);
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 17px;
    left: 17px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
    position: relative;
}

.glitch-text {
    color: var(--primary-color);
    position: relative;
    text-shadow: 
        3px 3px 0 var(--accent-color),
        -3px -3px 0 var(--secondary-color);
    animation: glitch 3s infinite;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 20px;
}

.feature {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.aim-preview {
    height: 200px;
    width: 100%;
    position: relative;
    margin: 40px 0;
    border-radius: 10px;
    background-color: rgba(28, 28, 45, 0.5);
    overflow: hidden;
}

.target {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, var(--primary-color) 0%, rgba(255, 58, 94, 0) 70%);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.coming-soon-text {
    margin: 30px 0;
    line-height: 1.6;
}

.coming-soon-text p {
    margin-bottom: 15px;
}

.subscribe-container {
    margin-top: 40px;
    background-color: var(--dark-accent);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
}

.subscribe-container h2 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

#subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="email"] {
    padding: 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
}

button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #ff526e;
    transform: translateY(-2px);
}

.pulse-button {
    animation: pulse 2s infinite;
}

footer {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glitch {
    0% {
        text-shadow: 
            3px 3px 0 var(--accent-color),
            -3px -3px 0 var(--secondary-color);
    }
    25% {
        text-shadow: 
            -3px 3px 0 var(--accent-color),
            3px -3px 0 var(--secondary-color);
    }
    50% {
        text-shadow: 
            3px -3px 0 var(--accent-color),
            -3px 3px 0 var(--secondary-color);
    }
    75% {
        text-shadow: 
            -3px -3px 0 var(--accent-color),
            3px 3px 0 var(--secondary-color);
    }
    100% {
        text-shadow: 
            3px 3px 0 var(--accent-color),
            -3px -3px 0 var(--secondary-color);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    #subscribe-form {
        flex-direction: column;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .cursor {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .feature {
        width: 100%;
        max-width: 300px;
    }
}
