body {
    margin: 0;
    font-family: 'Comic Neue', sans-serif;
    overflow-x: hidden;
    background: #DD00FF;
    text-align: center;
    color: white;
}

/* -------- HERO -------- */
.hero {
    padding: 50px 15px 120px;
}

.subtitle {
    font-size: 22px;
    max-width: 700px;
    margin: auto;
}

.subtitle.small {
    margin-top: 20px;
}

h1 {
    margin-top: 55px;
    font-size: 60px;
}

.glorie-img {
    width: 250px;
    border-radius: 30px;
    border: 5px solid white;
    display: block;
    margin: 30px auto;
    transition: transform .2s;
    cursor: pointer;
}

.twitter {
    display: inline-block;
    padding: 12px 65px;
    border: 3px solid white;
    background: #DD00FF;
    border-radius: 40px;
    font-size: 30px;
    font-weight: 1000;
    margin-top: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    /* плавный переход */
}

/* Эффект при наведении */
.twitter:hover {
    transform: scale(1.05);
    /* увеличиваем на 5% */
    filter: brightness(1.2);
    /* делаем чуть светлее */
}


.contract-box {
    width: 85%;
    height: 55px;
    background: #F4A9FF;
    border: 2px solid white;
    border-radius: 40px;
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}

.contract-box:hover {
    background: #ffbaff;
}

.contract-box span {
    color: white;
    font-weight: bold;
    font-size: 26px;
}

.contract-text {
    margin-top: 15px;
    font-size: 26px;
}

.copied-popup {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -10px;
    background: white;
    color: #f06fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.exclusive {
    color: #ffccff;
    margin-top: 90px;
    font-size: 15px;
}

/* -------- MINT SECTION WITH LAYERS -------- */
.mint-section {
    position: relative;
    /* создаем контекст для абсолютных слоев */
    width: 100%;
    min-height: 100vh;
    /* минимальная высота секции */
    overflow: hidden;
}

/* Layer 1 — зеленый фон */
.mint-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #9900ff;
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    z-index: -3;
}

/* Светлый зелёный поверх основного фона */
.mint-section::after {
    content: "";
    position: absolute;
    top: 100px;
    /* чуть ниже основного слоя */
    left: 0;
    width: 100%;
    height: 100%;
    background: #b84eff;
    /* светлее #00FF85 */
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    z-index: -2;
    /* поверх основного фона, но под остальными слоями */
}

.alloca-text {
    position: relative;
    z-index: 5;
    width: 100%;
    text-align: center;
    margin-top: 100px;

    font-family: 'Montserrat', sans-serif;
    font-size: 130px;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #9900ff;

    /* 💥 РАСТЯГИВАЕМ И НАКЛОНЯЕМ ТАК ЖЕ, КАК ФОН */
    transform: scaleY(1) skewY(-2.9deg);

    /* 🟩 Убираем размытость после растягивания */
    -webkit-text-stroke: 3px #b84eff;
    paint-order: stroke fill;
    line-height: 0.8;
    /* чтобы буквы не растягивали блок вниз */
}


.layer-lightest {
    position: absolute;
    top: 200px;
    /* чуть ниже светлого слоя */
    left: 0;
    width: 100%;
    height: 100%;
    background: #d597ff;
    /* ещё светлее #80FFB0 */
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
    /* поверх ::after, но под layer2–4 */
}

.layer-lightest2 {
    position: absolute;
    top: 300px;
    /* чуть ниже светлого слоя */
    left: 0;
    width: 100%;
    height: 100%;
    background: #f2deff;
    /* ещё светлее #80FFB0 */
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
    /* поверх ::after, но под layer2–4 */
}


.mint-img {
    width: 260px;
    border-radius: 30px;
    border: 5px solid white;
    display: block;
    margin: 30px auto;
    transition: transform .2s;
    /* плавный переход */
    cursor: pointer;
}

.mint-img:active {
    transform: scale(1.1);
    /* увеличиваем на 10% при нажатии */
}

.buy-btn {
    display: block;
    width: 220px;
    margin: 35px auto;
    padding: 18px;
    background: #9900ff;
    border-radius: 40px;
    border: 3px solid white;
    font-size: 36px;
    font-weight: 1000;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    /* плавный переход */
}

/* Эффект при наведении */
.buy-btn:hover {
    transform: scale(1.05);
    /* увеличиваем на 5% */
    filter: brightness(1.2);
    /* делаем цвет фона ярче */
}

/* --- Responsive --- */
@media (max-width: 500px) {
    h1 {
        font-size: 42px;
    }

    .twitter {
        padding: 10px 40px;
        font-size: 24px;
    }

    .buy-btn {
        width: 180px;
        font-size: 26px;
    }
}

/* ===== АНИМАЦИЯ ПОЯВЛЕНИЯ СНИЗУ ===== */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.9s ease-out;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}