:root {
    --bg-main: #0b0f19;
    --card-bg: #151b2b;
    --sky-blue: #4A90E2;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --card-border: rgba(14, 165, 233, 0.15);
    --glow-color: rgba(14, 165, 233, 0.3);
    --success-green: #22c55e;
    --danger-red: #ef4444;

    --telegram-color: #2eaadc;
    --whatsapp-color: #22c55e;
    --instagram-color: #E1306C;
    --youtube-color: #FF0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    height: 100% !important;
    width: 100%;
}

body {
    background-color: white;
    display: flex;
    justify-content: center;
    height: 100%;
}

.page {
    max-width: 420px;
    width: 100%;
    height: 100% !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 80px 15px;
    padding-bottom: 120px;

    min-height: fit-content;

    display: flex;
    flex-direction: column;
    gap: 10px;
}