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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #229ED9, #1E88C7);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(34, 158, 217, 0.3);
}

.telegram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 158, 217, 0.5);
    background: linear-gradient(135deg, #1E88C7, #1976B3);
}

.telegram-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 20px;
    height: 20px;
    font-size: 20px;
    animation: particle-float linear infinite;
    color: #ffcc66;
    transform-origin: center;
    bottom: -50px;
    cursor: pointer;
    pointer-events: auto;
    z-index: 5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.particle.exploding {
    animation: none;
    pointer-events: none;
}

.cheese-crumb {
    position: absolute;
    font-size: 12px;
    animation: crumb-explode 0.8s ease-out forwards;
    pointer-events: none;
}

@keyframes particle-float {
    from {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    to {
        transform: translateY(calc(-100vh - 100px)) rotate(720deg);
        opacity: 0;
    }
}

@keyframes crumb-explode {
    from {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    to {
        transform: translate(var(--x), var(--y)) scale(0.3);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    
    .telegram-link {
        font-size: 1rem;
        padding: 14px 32px;
    }
}