* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Winkle', 'Arial', sans-serif;
}

/* Добавьте эти стили в ваш CSS файл */
.tokenomics-item h3,
.tokenomics-item p {
    -webkit-text-stroke: 5px black; /* Толщина и цвет обводки */
    paint-order: stroke fill; /* Сначала рисуется обводка, потом заливка */
    /* Для Firefox */
    text-shadow: none;
}

.petushok-text {
    -webkit-text-stroke: 8px black; /* Толщина и цвет обводки */
    paint-order: stroke fill; /* Сначала рисуется обводка, потом заливка */
    /* Для Firefox */
    text-shadow: none;
}

@font-face {
    font-family: 'Winkle';
    src: url('fonts/Winkle-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #ffb329;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Основные стили секций */
.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    background-color: #ffb329;
}

/* Стили главной секции */
#main {
    background-image: url('img/bg.jpg');
    text-align: center;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 160px);
    gap: 30px;
}

/* Социальные иконки */
.social-icons {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffb329;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon img {
    width: 24px;
    height: 24px;
}

/* Основное изображение */
.main-image {
    max-width: 280px;
    width: 100%;
    border-radius: 20px;
    animation: float-parachute 6s ease-in-out infinite; /* Применяем анимацию */
    transform-origin: 50% 50%; /* Точка вращения — низ картинки */
    will-change: transform; /* Оптимизация для плавности */
}

@keyframes float-parachute {
    0%, 100% {
        transform: translateY(-10px) rotate(-10deg);
    }
    25% {
        transform: translateY(0) rotate(30deg);
    }
    50% {
        transform: translateY(-10px) rotate(-10deg);
    }
    75% {
        transform: translateY(0) rotate(30deg);
    }
}

@keyframes parachute-float {
    0%, 100% {
        transform: 
            translate(-5px, 0) 
            rotate(-2deg)
            translateY(0);
    }
    25% {
        transform: 
            translate(5px, -3px) 
            rotate(3deg);
    }
    50% {
        transform: 
            translate(-4px, -1px) 
            rotate(-4deg);
    }
    75% {
        transform: 
            translate(3px, -2px) 
            rotate(2deg);
    }
}

/* Дрожание строп (лёгкая вибрация) */
@keyframes parachute-shake {
    0%, 20%, 40%, 60%, 80%, 100% {
        transform: translateX(0);
    }
    10% {
        transform: translateX(-1px);
    }
    30% {
        transform: translateX(1px);
    }
    50% {
        transform: translateX(-1px);
    }
    70% {
        transform: translateX(1px);
    }
    90% {
        transform: translateX(-1px);
    }
}

/* Текст под изображением */
.petushok-text {
    font-size: 4em;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* Контейнер для адреса контракта */
.ca-container {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin-top: -10px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#ca-input {
    flex-grow: 1;
    padding: 14px 25px;
    border: none;
    background-color: white;
    color: #333;
    font-size: 1.1rem;
    text-align: center;
    outline: none;
}

.copy-btn {
    padding: 0 30px;
    background-color: #ffb329;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: #e69500;
}

/* About Section */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-title-img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.about-content {
    width: 100%;
    margin-bottom: 40px;
}

.about-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    animation: 
        parachute-float 8s ease-in-out infinite,
        parachute-shake 0.5s linear infinite;
    transform-origin: 50% 90%; /* Точка вращения — чуть выше низа */
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3)); /* Лёгкая тень для объёма */
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
    padding: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.7em;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Tokenomics Section */
.tokenomics-header {
    text-align: center;
    margin-bottom: 50px;
}

.tokenomics-title-img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

#tokenomics {
    background-image: url('img/bg.jpg');
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 auto 40px;
    max-width: 900px;
}

.tokenomics-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tokenomics-item h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.tokenomics-item p {
    font-size: 1.7em;
    margin-bottom: 0;

    color: white;
}

/* How to Buy Section */
.how-to-buy-header {
    text-align: center;
    margin-bottom: 50px;
}

.how-to-buy-title-img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.ground-top {
    position: absolute;
    top: -3rem;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('img/ground.png');
    background-size: cover;
    background-repeat: repeat-x;
    background-position: center bottom;
    z-index: 1;
}

.content {
    width: 100%;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1000px;
}

.step {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.step h3 {
    font-size: 2em;
    margin-bottom: 15px;
    background-color: white;
    color: #333;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step p {
    font-size: 1.7em;
    margin-bottom: 0;
    color: #333;
}

.buy-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffb329;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.buy-btn:hover {
    background-color: #e69500;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .section, .full-width-section {
        padding: 60px 0;
    }
    
    .social-icons {
        top: 20px;
        right: 20px;
    }
    
    .main-image {
        max-width: 220px;
    }
    
    .petushok-text {
        font-size: 1.6rem;
    }
    
    .ca-container {
        flex-direction: column;
        max-width: 300px;
    }
    
    #ca-input {
        padding: 12px;
    }
    
    .copy-btn {
        padding: 12px;
    }
    
    /* About Section */
    .about-title-img,
    .tokenomics-title-img,
    .how-to-buy-title-img {
        max-width: 250px;
    }
    
    .about-block {
        flex-direction: column;
    }
    
    .about-image, 
    .about-text {
        min-width: 100%;
        max-width: 100%;
    }
    
    .about-text {
        padding: 20px 0;
        text-align: center;
    }
    
    .about-text p,
    .tokenomics-item p {
        font-size: 1rem;
    }
    
    /* Tokenomics Section */
    .tokenomics-grid {
        max-width: 400px;
        grid-template-columns: 1fr;
    }
    
    /* How to Buy Section */
    .steps {
        grid-template-columns: 1fr;
    }
    
    .buy-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .full-width-section {
        background-attachment: scroll;
    }
    
    .ground-top {
        top: -1.5rem;
        height: 60px;
    }
}