/* airdrop.css - простая версия без медиа-запросов */

@font-face {
    font-family: 'BourbonRough';
    src: url('../assets/founts/BourbonRough.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.section-4 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    max-width: 100%;
    cursor: none;
}

.section-4 .section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 0;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../assets/images/Background/Section-4.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: var(--bg-opacity, 0);
        transition: opacity 0.3s ease;
        z-index: 1;
        
        mask: radial-gradient(
            var(--illumination-radius) circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
            rgba(255,255,255,1) 0%, 
            rgba(255,255,255,0.8) 20%, 
            rgba(255,255,255,0.4) 40%, 
            rgba(255,255,255,0.1) 60%, 
            transparent 100%
        );
        -webkit-mask: radial-gradient(
            var(--illumination-radius) circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
            rgba(255,255,255,1) 0%, 
            rgba(255,255,255,0.8) 20%, 
            rgba(255,255,255,0.4) 40%, 
            rgba(255,255,255,0.1) 60%, 
            transparent 100%
        );
    }
}

.cursor-spotlight {
    position: fixed;
    width: var(--spotlight-radius);
    height: var(--spotlight-radius);
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.15) 30%,
        rgba(255, 255, 255, 0.05) 60%,
        transparent 100%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.section-4 .content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--airdrop-container-padding) var(--airdrop-container-padding-x) var(--airdrop-container-padding-bottom);
}

.airdrop-container,
.airdrop-container * {
    font-family: 'BourbonRough', 'Impact', 'Arial Black', sans-serif !important;
}

.airdrop-container {
    max-width: var(--airdrop-container-max-width);
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(var(--airdrop-transform-y));
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

.airdrop-title {
    font-size: var(--airdrop-title-size);
    font-weight: var(--airdrop-title-weight);
    color: #ffffff;
    margin: 0 0 var(--airdrop-title-margin) 0;
    letter-spacing: var(--airdrop-title-letter-spacing);
    text-transform: uppercase;
}

.airdrop-title .blood-text {
    color: #ff0000;
}

.typewriter-text {
    font-size: var(--typewriter-text-size);
    font-weight: var(--typewriter-text-weight);
    color: rgba(255, 255, 255, 0.9);
    margin: var(--typewriter-text-margin) 0 0 0;
    letter-spacing: var(--typewriter-text-letter-spacing);
    text-transform: uppercase;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter-content {
    position: relative;
    display: inline-block;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}