:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f8bbd9;
    --primary-light-s: #fad8e7;
    --secondary-color: #9c27b0;
    --accent-color: #ff4081;
    --background-gradient: linear-gradient(135deg, rgba(233, 30, 99, 0.85), rgba(156, 39, 176, 0.85));
    --surface-color: rgba(255, 255, 255, 0.92);
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-on-primary: #ffffff;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background:
            var(--background-gradient),
            url('../img/photo-1488426862026-3ee34a7d66df.png') center/cover no-repeat;
    color: var(--text-primary);
    max-width: 100vw;
    min-height: 100vh;
    text-align: center;
    line-height: 1.5;

}



html, body {
    touch-action: pan-x pan-y;
    -webkit-user-scalable: no;
    user-scalable: no;
    overflow: hidden;
}