/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Основные стили */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
header {
    background-color: #000000;
    border-bottom: 1px solid #333333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #cccccc;
}

/* Главная секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.tagline {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Кнопки */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background-color: #cccccc;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Секции */
section {
    padding: 4rem 0;
}

.about {
    background-color: #111111;
}

.about h2, .stats h2, .buy h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.about p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    border: 1px solid #333333;
    background-color: #000000;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.quote cite {
    color: #cccccc;
    font-size: 1rem;
    font-style: normal;
}

.contract-address {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    border: 1px solid #333333;
    background-color: #000000;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contract-address h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contract-address code {
    color: #ffffff;
    background-color: #111111;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    display: block;
    border: 1px solid #333333;
}


/* Статистика */
.stats {
    background-color: #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    border: 1px solid #333333;
    background-color: #111111;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: #ffffff;
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Покупка */
.buy {
    background-color: #111111;
}

.buy-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.price-display {
    text-align: center;
}

.current-price {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.price-change {
    color: #00ff00;
    font-size: 1.2rem;
}

.buy-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.amount-input {
    padding: 1rem;
    border: 2px solid #333333;
    background-color: #000000;
    color: #ffffff;
    font-size: 1.1rem;
    min-width: 200px;
}

.amount-input:focus {
    outline: none;
    border-color: #ffffff;
}

/* Футер */
footer {
    background-color: #000000;
    border-top: 1px solid #333333;
    padding: 2rem 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .buy-content {
        flex-direction: column;
        text-align: center;
    }
    
    .buy-form {
        justify-content: center;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

.stat {
    animation: fadeIn 0.6s ease-out;
}

/* Скролл */
html {
    scroll-behavior: smooth;
}
