/* Общие стили */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Навигационная панель */
header {
    background-color: #000;
    padding: 10px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    border-color: #ff5722;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff5722;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-left: 10px;
    transform: skewX(-10deg);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-left: auto;
}

.nav-links li {
    margin-left: 150px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff5722;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ff5722;
}

.nav-links a:hover::after {
    width: 100%;
}

.buy-now-container {
    margin-left: 900px;
    margin-top: -45px;
}

.button {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--clr);
    color: #fff;
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #000;
}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: var(--clr);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

/* Секция Hero с видеофоном */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: fadeIn 3s ease-in-out;
}

.btn {
    transition: all 0.3s ease-in-out;
    font-family: "Poppins", sans-serif;
    width: 150px;
    height: 60px;
    border-radius: 50px;
    background-color: #ff5722;
    box-shadow: 0 20px 30px -6px rgba(255, 87, 34, 0.5);
    outline: none;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
}

.btn:hover {
    transform: translateY(3px);
    box-shadow: none;
}

.btn:active {
    opacity: 0.5;
}

/* Секции */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Блок с кружками и стрелками */
.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
    gap: 40px;
}

.step {
    text-align: center;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: #1a1a1a;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-image:hover {
    transform: scale(1.1);
    border-color: #ff5722;
}

.step h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 15px;
}

.step p {
    font-size: 1rem;
    color: #ccc;
    margin-top: 10px;
}

.arrow {
    font-size: 2rem;
    color: #fff;
    margin-top: 50px;
}

/* Блок с текстом Token Distribution */
.token-distribution {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.token-distribution-content {
    max-width: 600px;
    text-align: left;
}

.token-distribution-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff5722;
}

.token-distribution-content ul {
    list-style: none;
    padding: 0;
}

.token-distribution-content ul li {
    margin-bottom: 20px;
}

.token-distribution-content ul li strong {
    color: #ff5722;
}

.token-distribution-content ul ul {
    margin-top: 10px;
    padding-left: 20px;
}

.tokenomics-image img {
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Футер */
footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff5722;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
    header {
        padding: 10px 20px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-links li {
        margin-left: 15px;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .buy-now-container {
        margin-left: auto;
        margin-top: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .section p {
        font-size: 1rem;
    }

    .button {
        padding: 0.5rem 1rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .token-distribution {
        flex-direction: column;
        padding: 20px;
    }

    .tokenomics-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .buy-now-container {
        margin-left: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .section p {
        font-size: 0.9rem;
    }
}

/* Для мониторов с большим разрешением (например, 4K) */
@media only screen and (min-width: 2560px) and (min-resolution: 2dppx) {
    .buy-now-container {
        font-size: 1.5rem; /* Увеличенный шрифт */
        margin: 0 auto;    /* Центрирование */
    }

    .button {
        padding: 1rem 2rem; /* Увеличенный отступ */
    }
}

/* Для больших мониторов с шириной более 1920px */
@media only screen and (min-width: 1920px) {
    .buy-now-container {
        font-size: 1.25rem; /* Увеличенный шрифт */
    }
}


.music-player {
    position: fixed;
    bottom: 20px; /* Расположить плеер внизу */
    right: 20px; /* Расположить плеер справа */
    z-index: 1000;
    transform: scale(0.8); /* Можно уменьшить размер */
}

}

.card {
    position: relative;
    min-width: 250px;
    min-height: 120px;
    background: #191414;
    border-radius: 10px;
    padding: .8rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    box-shadow: 0 10px 40px -25px rgba(100, 100, 100, .5);
}

.top {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-block-end: .5rem;
}

.pfp {
    position: relative;
    height: 40px;
    width: 40px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-1 {
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
}

.title-2 {
    color: white;
    font-size: .75rem;
    opacity: .8;
}



.controls {
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.volume {
    height: 100%;
    width: 48px;
}

.air {
    height: 100%;
    width: 48px;
}

.controls svg {
    cursor: pointer;
    transition: 0.1s;
}

.controls svg:hover {
    color: #1db954;
}

.controls .heart:hover {
    color: pink;
}

.volume {
    opacity: 0;
    position: relative;
    transition: 0.2s;
}

.volume .slider {
    height: 4px;
    background-color: #5e5e5e;
    width: 80%;
    border-radius: 2px;
    margin-left: .3rem;
}

.volume .slider .green {
    background-color: #1db954;
    height: 100%;
    width: 80%;
    border-radius: 3px;
}

.volume .circle {
    background-color: white;
    height: 6px;
    width: 6px;
    border-radius: 3px;
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
}

.volume_button:hover ~ .volume {
    opacity: 1;
}

.timetext {
    color: white;
}



.playing {
    display: flex;
    position: relative;
    justify-content: center;
    gap: 1px;
    width: 30px;
    height: 20px;
}

.greenline {
    background-color: #1db954;
    height: 20px;
    width: 2px;
    position: relative;
    transform-origin: bottom;
}

.line-1 {
    animation: infinite playing 1s ease-in-out;
    animation-delay: 0.2s;
}

.line-2 {
    animation: infinite playing 1s ease-in-out;
    animation-delay: 0.5s;
}

.line-3 {
    animation: infinite playing 1s ease-in-out;
    animation-delay: 0.6s;
}

.line-4 {
    animation: infinite playing 1s ease-in-out;
    animation-delay: 0s;
}

.line-5 {
    animation: infinite playing 1s ease-in-out;
    animation-delay: 0.4s;
}

@keyframes playing {
    0% {
        transform: scaleY(0.1);
    }

    33% {
        transform: scaleY(0.6);
    }

    66% {
        transform: scaleY(0.9);
    }

    100% {
        transform: scaleY(0.1);
    }
}