:root {
    --bg-color: #050505;
    --accent-color: #ff0000;
    --text-color: #ffffff;
    --card-bg: #111111;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    cursor: none; /* Hide default cursor */
}

.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

.background-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -2;
    animation: moveDots 20s linear infinite;
}

@keyframes moveDots {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.nav-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.credit-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.credit-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-top: 2px;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-box {
    position: relative;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.logo-yuri {
    font-weight: 400; /* Less bold */
}

.logo-eu {
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4); /* Less glow opacity (was 0.8) */
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition-speed);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.cta-nav {
    border: 2px solid var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.cta-nav:hover {
    background: var(--accent-color);
    color: var(--bg-color) !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.neon-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    /* Glow removed */
    text-shadow: none;
    position: relative;
}

#typewriter::after {
    content: "|";
    margin-left: 5px;
    animation: blink 0.6s steps(1) infinite; /* Faster instant blink */
    font-weight: 400;
    color: var(--accent-color);
}

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

.subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.subtitle-container::before,
.subtitle-container::after {
    content: "";
    flex: 2;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.subtitle-container::before {
    background: linear-gradient(to left, var(--accent-color), transparent);
}

.subtitle-container::after {
    background: linear-gradient(to right, var(--accent-color), transparent);
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    padding: 0 0.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

.btn {
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition-speed);
    text-transform: uppercase;
    cursor: pointer;
}

.btn-primary {
    background: rgba(255, 0, 0, 0.1);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
}

.features {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

.section-title-container::before,
.section-title-container::after {
    content: "";
    flex: 3; /* Larger than subtitle lines (flex: 2) */
    height: 2px; /* Thicker than subtitle lines (1px) */
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.section-title-container::before {
    background: linear-gradient(to left, var(--accent-color), transparent);
}

.section-title-container::after {
    background: linear-gradient(to right, var(--accent-color), transparent);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    text-align: center;
    margin: 0; /* Removed margin-bottom since container handles it */
    color: #fff;
    text-shadow: none;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 5px;
    white-space: nowrap;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-speed);
    text-align: center;
}

.feature-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.1);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
}

footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .neon-text {
        font-size: 3rem;
    }
    .nav-links {
        display: none;
    }
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
}
