/* Общие */
body {
    margin: 0;
    background: #000;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    padding: 10px 0;
}

.header-inner {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent;
    backdrop-filter: blur(0px);
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: -10px;
    background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0.1), rgba(255,255,255,0.3));
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: 0.4s;
}

.logo:hover .logo-glow {
    opacity: 1;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(to right, white, #dcdcdc, white);
    -webkit-background-clip: text;
    color: transparent;
}

/* Навигация */
.nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: 0.2s;
}

.nav-link:hover {
    color: #fff;
}

/* Discord Button */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.discord-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: 0.3s;
}

.discord-btn:hover::before {
    opacity: 1;
}

.discord-icon {
    width: 20px;
    height: 20px;
}
/* HERO SECTION */
.hero {
    padding: 140px 20px 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #7dd3fc;
    border: 1px solid rgba(56, 189, 248, 0.2);
    background: rgba(56, 189, 248, 0.1);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    animation: fadeUp 0.6s ease forwards;
}

.ping-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background: #0ea5e9;
    border-radius: 50%;
}

.ping-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #38bdf8;
    opacity: 0.7;
    animation: ping 1.2s infinite;
}

/* Title */
.hero-title {
    font-size: 64px;
    font-weight: 500;
    color: white;
    margin-top: 20px;
    animation: fadeUp 0.8s ease forwards;
}

.hero-wave {
    position: relative;
    background: linear-gradient(90deg, #3b82f6, #7dd3fc, #3b82f6);
    background-size: 200% auto;
    -webkit-background-clip: text;
    color: transparent;
    animation: textGradient 3s linear infinite;
}

/* Subtitle */
.hero-subtitle {
    margin-top: 20px;
    max-width: 600px;
    font-size: 20px;
    color: #94a3b8;
    animation: fadeUp 1s ease forwards;
}

/* Buttons */
.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeUp 1.2s ease forwards;
}

.btn-primary {
    padding: 16px 32px;
    background: white;
    color: #0f172a;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e2e8f0;
    box-shadow: 0 0 40px -10px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 700;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Stats */
.hero-stats {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    filter: grayscale(1);
    transition: 0.4s;
    animation: fadeUp 1.4s ease forwards;
}

.hero-stats:hover {
    filter: grayscale(0);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ping {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes textGradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* FEATURES GRID */
.features {
    margin-top: 120px;
    padding: 0 20px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* CARD */
.feature-card {
    position: relative;
    padding: 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
}

/* Glow circle */
.feature-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    filter: blur(80px);
    transition: 0.4s;
}

.feature-card:hover .feature-glow {
    background: rgba(56, 189, 248, 0.3);
}

/* Icon */
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: #0ea5e9;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

/* Tag */
.feature-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    margin-bottom: 16px;
    transition: 0.3s;
}

.feature-card:hover .feature-tag {
    color: #7dd3fc;
    border-color: rgba(56, 189, 248, 0.3);
}

/* Title */
.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    transition: 0.3s;
}

.feature-card:hover .feature-title {
    color: #bae6fd;
}

/* Text */
.feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    transition: 0.3s;
}

.feature-card:hover .feature-text {
    color: #cbd5e1;
}

