* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 215, 0, 0.03) 2px,
        rgba(255, 215, 0, 0.03) 4px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(255, 215, 0, 0.03) 2px,
        rgba(255, 215, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.gif-above {
    margin-bottom: 1rem;
}

.gif-below {
    margin-top: 1rem;
}

.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: containerPulse 3s ease-in-out infinite;
}

@keyframes containerPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    }
}

.spinner-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.05);
}

.spinner-reel {
    position: relative;
    width: 80px;
    height: 100px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 8px;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.spinner-reel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.1), transparent);
    pointer-events: none;
    z-index: 2;
}

.spinner-reel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.1), transparent);
    pointer-events: none;
    z-index: 2;
}

.spinner-reel:hover {
    border-color: rgba(255, 215, 0, 0.9);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.spinner-reel.spinning-fast {
    border-color: rgba(255, 215, 0, 1);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 50px rgba(255, 215, 0, 0.4);
    animation: reelPulse 0.3s ease-in-out infinite;
}

@keyframes reelPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.reel-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    min-height: 100px;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3);
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.2s ease;
    filter: brightness(1);
}

.reel-item:hover {
    filter: brightness(1.2);
    transform: scale(1.1);
}

.reel-item.number-item {
    color: #ff0000;
    font-size: 3.5rem;
    text-shadow: 
        0 0 10px rgba(255, 0, 0, 0.9),
        0 0 20px rgba(255, 0, 0, 0.7),
        0 0 30px rgba(255, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 0, 0.3),
        0 0 60px rgba(255, 0, 0, 0.2);
    font-weight: 900;
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 20px rgba(255, 0, 0, 1));
    }
}

.spinner-reel.spinning-fast .reel-strip {
    animation: spin 0.1s linear infinite;
}

.spinner-reel.spinning-fast .reel-item {
    animation: itemBlur 0.1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-2000px);
    }
}

@keyframes itemBlur {
    0%, 100% {
        filter: blur(0px) brightness(1);
    }
    50% {
        filter: blur(2px) brightness(1.5);
    }
}

.spin-btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite;
}

.spin-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.spin-btn:hover:not(:disabled)::before {
    animation: shine 0.5s ease-in-out;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.4),
            0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.6),
            0 8px 20px rgba(0, 0, 0, 0.4);
    }
}

.spin-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.8),
        0 10px 25px rgba(0, 0, 0, 0.5);
    animation: none;
}

.spin-btn:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
}

.spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    animation: buttonDisabled 1s ease-in-out infinite;
}

@keyframes buttonDisabled {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
}

.spinner-result {
    margin-top: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.spinner-result.jackpot {
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        0 0 50px rgba(255, 215, 0, 0.3);
    animation: celebrate 0.8s ease-out, jackpotGlow 2s ease-in-out infinite;
    position: relative;
}

.spinner-result.jackpot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    border-radius: 50%;
    animation: jackpotRipple 1.5s ease-out infinite;
    z-index: -1;
}

@keyframes jackpotRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes jackpotGlow {
    0%, 100% {
        filter: brightness(1);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.3);
        transform: scale(1.05);
    }
}

.spinner-result.spin-again {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    animation: fadeInUp 0.5s ease-out, spinAgainPulse 2s ease-in-out infinite;
}

@keyframes spinAgainPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes celebrate {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.decorative-gif {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.decorative-gif:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.logo {
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease-out;
}

.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    margin: 1rem 0;
    animation: fadeInDown 0.8s ease-out 0.2s both;
    max-width: 250px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.main-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.main-image:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.cult-text {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.seven-text {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
}


.content {
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-style: italic;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.copy-notification {
    position: absolute;
    top: -3.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.copy-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.copy-notification.error {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.info-card h3 {
    font-size: 1.1rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.address-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    word-break: break-all;
    flex: 1;
    min-width: 200px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.copy-btn {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.x-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.x-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.x-link svg {
    width: 24px;
    height: 24px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .decorative-gif {
        max-width: 200px;
    }
    
    .hero-image {
        max-width: 200px;
    }
    
    .main-image {
        border-radius: 10px;
    }
    
    .logo-text {
        gap: 0.5rem;
    }
    
    .cult-text,
    .seven-text {
        font-size: 2.5rem;
    }
    
    .coming-soon {
        font-size: 2rem;
    }
    
    .spinner-container {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .spinner-wrapper {
        gap: 0.3rem;
        padding: 0.5rem;
    }
    
    .spinner-reel {
        width: 60px;
        height: 80px;
    }
    
    .reel-item {
        height: 80px;
        font-size: 1.8rem;
    }
    
    .reel-item.number-item {
        font-size: 2.5rem;
    }
    
    .spin-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .spinner-result {
        font-size: 1.5rem;
        min-height: 50px;
    }
    
    .spinner-result.spin-again {
        font-size: 1rem;
    }
    
    .copy-notification {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        top: -3rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .contract-address {
        font-size: 0.8rem;
    }
}

