/* Debug CSS - Minimal styles for hero and telegram widget */
:root {
    --bg: #0a0d14;
    --card: #111827;
    --soft: #1f2937;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --brand: #22c55e;
    --brand-2: #16a34a;
    --accent: #f59e0b;
    --danger: #ef4444;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0b1220 0%, #0a0d14 50%, #1a1f2e 100%) !important;
    padding: 60px 0 40px !important;
    overflow: hidden !important;
    min-height: 70vh !important;
    display: flex !important;
    align-items: center !important;
}

.hero-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="wavy" width="400" height="200" patternUnits="userSpaceOnUse"><path d="M 0 100 Q 50 50 100 100 T 200 100 T 300 100 T 400 100" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/><path d="M 0 150 Q 50 100 100 150 T 200 150 T 300 150 T 400 150" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><path d="M 0 50 Q 50 0 100 50 T 200 50 T 300 50 T 400 50" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></defs><rect width="1200" height="800" fill="url(%23wavy)"/></svg>') !important;
    opacity: 0.8 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin: 0 0 24px !important;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Telegram Widget */
.telegram-widget {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
}

.telegram-widget-button {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #24A1DE 0%, #1e8bc3 100%) !important;
    color: white !important;
    padding: 12px 16px !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(36, 161, 222, 0.3) !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: none !important;
    outline: none !important;
}

.telegram-widget-container {
    position: absolute !important;
    bottom: 70px !important;
    right: 0 !important;
    width: 350px !important;
    background: var(--card) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid var(--soft) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) !important;
    transition: all 0.3s ease !important;
}

.telegram-widget-container.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Force important for all critical styles */
.hero * {
    color: var(--text) !important;
}

.telegram-widget * {
    color: white !important;
}
