@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: -1;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-right {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 400;
    color: #999;
}

.nav-right a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-right a:hover {
    color: #dc143c;
    transform: scale(1.05);
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #dc143c 50%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.subtitle {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    color: #dc143c;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
    animation: pulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
    }

    25% {
        text-shadow: 0 0 40px rgba(220, 20, 60, 0.65);
    }

    50% {
        text-shadow: 0 0 55px rgba(220, 20, 60, 0.85);
    }

    75% {
        text-shadow: 0 0 40px rgba(220, 20, 60, 0.65);
    }

    100% {
        text-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
    }
}

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

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 12px;
    color: #666;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.glow-thing {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(10px, -15px) scale(1.05);
    }

    66% {
        transform: translate(-15px, 20px) scale(1.08);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.glow-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.glow-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: 4s;
}

@media (max-width: 768px) {

    .nav,
    .footer {
        padding: 15px 20px;
    }

    .main-container {
        padding: 0 20px;
    }

    .nav-left {
        gap: 20px;
        font-size: 12px;
    }

    .footer {
        gap: 20px;
    }
}

.telegram-link {
    color: #dc143c;
    /* matches your accent color */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.telegram-link {
    color: #dc143c;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.telegram-link:hover {
    color: #ff4b4b;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.6);
}


.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #dc143c 50%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Optional: basic styling for the "about" section */
.about-section {
    margin-top: -20px;
    /* pulls it upwards */
    max-width: 600px;
    text-align: center;
}

.about-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #dc143c;
}

.about-text {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

.disclaimer {
    margin-top: 30px;
    padding: 15px 20px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
}

.disclaimer p {
    font-size: 14px;
    color: #dc143c;
    line-height: 1.5;
    margin: 0;
}

.disclaimer p:first-child {
    margin-bottom: 15px;
}

.disclaimer p strong {
    display: inline;
    margin-bottom: 0;
}

.disclaimer ul {
    margin: 5px 0 12px 0;
    padding-left: 0;
    list-style: none;
}

.disclaimer ul li {
    font-size: 14px;
    color: #dc143c;
    line-height: 1.6;
    padding-left: 0;
}

.disclaimer ul li:before {
    font-weight: bold;
    color: #dc143c;
}

.disclaimer>p:last-child {
    margin-top: 15px;
}