:root {
    --primary-color: #ff3e3e;
    --secondary-color: #2b2d31;
    --text-color: #ffffff;
    --background-color: #1a1b1d;
    --card-background: #2b2d31;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: rgba(26, 27, 29, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.buy-btn, .primary-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.buy-btn, .primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.buy-btn:hover, .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.3);
}

/* Hero Section */
.hero {
    padding: 8rem 5% 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.n-logo {
    font-size: 20rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 62, 62, 0.3);
    transform: skew(-10deg);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.n-logo::after {
    content: 'N';
    position: absolute;
    left: 5px;
    top: 5px;
    color: rgba(255, 62, 62, 0.3);
    z-index: -1;
    filter: blur(8px);
}

@keyframes float {
    0%, 100% {
        transform: skew(-10deg) translateY(0);
    }
    50% {
        transform: skew(-10deg) translateY(-20px);
    }
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.description {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Changelog Section */
.changelog {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
}

.changelog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.changelog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.changelog-item {
    background-color: var(--background-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 62, 62, 0.1);
}

.changelog-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.1);
}

.changelog-date {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.changelog-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 62, 62, 0.2);
    padding-bottom: 0.5rem;
}

.changelog-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog-content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.4;
}

.changelog-content li:last-child {
    margin-bottom: 0;
}

.changelog-content li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .changelog-container {
        grid-template-columns: 1fr;
    }
}

/* Contacts Section */
.contacts {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--background-color);
}

.contacts h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contacts-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    padding: 2rem;
    border-radius: 12px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    min-width: 200px;
}

.contact-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.2);
}

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

.contact-link span {
    font-size: 1.2rem;
    font-weight: 500;
}

.telegram:hover {
    background-color: #229ED9;
}

.discord:hover {
    background-color: #5865F2;
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    background-color: var(--background-color);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-card {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 62, 62, 0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    position: relative;
}

.pricing-card.featured::before {
    content: "★ Лучший выбор";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.1);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
}

.price .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Buy Section */
.buy {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(to bottom, var(--background-color), var(--secondary-color));
}

.buy h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.buy p {
    margin-bottom: 2rem;
    color: #a0a0a0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .nav-links {
        display: none;
    }

    h1 {
        font-size: 3rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
