* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.clickable {
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.clickable:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Poppins', sans-serif;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
    color: #e2e8f0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    animation: backgroundShift 10s ease infinite;
    z-index: -1;
}

.redirect-timer {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    z-index: 1000;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    letter-spacing: 0.3px;
}

#countdown {
    font-weight: 800;
    font-size: 17px;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.container {
    max-width: 600px;
    width: 100%;
    position: relative;
}

.warning-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5);
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(239, 68, 68, 0.6);
    }
}

.main-content {
    background: linear-gradient(145deg, #1e293b 0%, #1a2332 100%);
    backdrop-filter: blur(10px);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

.glowing-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #ff0844, #ff5e3a, #ffa900);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    margin-bottom: 15px;
    line-height: 1.3;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.subtitle {
    text-align: center;
    font-size: 18px;
    color: #764ba2;
    font-weight: 600;
    margin-bottom: 30px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.click-here-section {
    text-align: center;
    margin-bottom: 25px;
}

.click-text {
    font-size: 17px;
    font-weight: 700;
    color: #0088cc;
    margin: 0;
    animation: pulse 1.5s infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.feature-item {
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid #334155;
    color: #e2e8f0;
    padding: 14px 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(0, 136, 204, 0.15);
    border-color: #0088cc;
}

.cta-section {
    text-align: center;
    margin-bottom: 28px;
    padding: 28px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.cta-section h2 {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.3px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.channels {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.channel-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.channel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.channel-btn:hover::before {
    left: 100%;
}

.channel-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 136, 204, 0.7);
}

.channel-btn:active {
    transform: translateY(-1px) scale(0.99);
}

.channel-btn:active {
    transform: scale(0.98);
}

.primary {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.5);
    border: 1px solid rgba(0, 136, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.secondary {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.5);
    border: 1px solid rgba(0, 136, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.secondary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite 1s;
}

.tertiary {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.5);
    border: 1px solid rgba(0, 136, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.tertiary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite 2s;
}

.telegram-logo {
    width: 42px;
    height: 42px;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 3px 6px rgba(255, 255, 255, 0.3));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-8deg);
    }
    75% {
        transform: translateY(-5px) rotate(8deg);
    }
}

.telegram-logo {
    width: 45px;
    height: 45px;
    animation: rotate 3s linear infinite;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

@keyframes rotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

.btn-content {
    flex: 1;
    margin: 0 15px;
    text-align: left;
}

.btn-title {
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.btn-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.arrow {
    font-size: 24px;
    color: white;
    font-weight: 700;
}

.copyright {
    text-align: center;
    padding: 22px 0 0;
    margin-top: 24px;
    border-top: 1px solid #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.copyright-logo {
    width: 18px;
    height: 18px;
}

.copyright span {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
}

.copyright a {
    color: #0088cc;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #006699;
    text-decoration: underline;
}

.floating-emojis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.emoji {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.emoji:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.emoji:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.emoji:nth-child(3) {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.emoji:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: 1s;
}

.emoji:nth-child(5) {
    top: 40%;
    right: 5%;
    animation-delay: 3s;
}

.emoji:nth-child(6) {
    bottom: 30%;
    left: 15%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .glowing-title {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .click-text {
        font-size: 16px;
    }
    
    .main-content {
        padding: 30px 20px;
    }
    
    .channel-btn {
        padding: 18px 20px;
    }
    
    .btn-title {
        font-size: 16px;
    }
    
    .cta-section h2 {
        font-size: 17px;
    }
    
    .redirect-timer {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 12px;
    }
    
    #countdown {
        font-size: 16px;
    }
    
    .telegram-logo {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .glowing-title {
        font-size: 22px;
    }
    
    .btn-icon {
        font-size: 28px;
    }
    
    .warning-badge {
        font-size: 16px;
        padding: 10px 25px;
    }
}
