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

/* General Sans (self-hosted variable font, weights 200-700) */
@font-face {
    font-family: 'General Sans';
    src: url('/fonts/general-sans/GeneralSans-Variable.woff2') format('woff2-variations'),
         url('/fonts/general-sans/GeneralSans-Variable.woff2') format('woff2');
    font-weight: 200 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'General Sans';
    src: url('/fonts/general-sans/GeneralSans-VariableItalic.woff2') format('woff2-variations'),
         url('/fonts/general-sans/GeneralSans-VariableItalic.woff2') format('woff2');
    font-weight: 200 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #1a1a1a;
    --gradient: linear-gradient(135deg, #7fb2f8 0%, #0a4194 100%);
    --gradient-hover: linear-gradient(135deg, #0a4194 0%, #7fb2f8 100%);
    --text-light: #6b7280;
    --bg-light: #ffffff;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border: #e2e8f0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background-color: #ffffff;
    background-image:
        /* Soft iOS-like abstract blobs */
        radial-gradient(ellipse 60% 50% at 12% 8%, rgba(226, 232, 240, 0.85) 0%, rgba(226, 232, 240, 0) 60%),
        radial-gradient(ellipse 55% 45% at 88% 18%, rgba(203, 213, 225, 0.55) 0%, rgba(203, 213, 225, 0) 65%),
        radial-gradient(ellipse 70% 55% at 95% 85%, rgba(214, 222, 233, 0.75) 0%, rgba(214, 222, 233, 0) 65%),
        radial-gradient(ellipse 65% 50% at 5% 95%, rgba(230, 235, 242, 0.7) 0%, rgba(230, 235, 242, 0) 65%),
        radial-gradient(ellipse 45% 40% at 50% 55%, rgba(241, 245, 249, 0.6) 0%, rgba(241, 245, 249, 0) 70%),
        /* Base diagonal wash white -> light gray */
        linear-gradient(135deg, #ffffff 0%, #f5f7fa 55%, #eceff3 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Page wrapper for flexbox layout */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* width: 100%; */
}

/* Main content grows to fill space */
.slot-content {
    flex: 1;
    /* width: 100%; */
}

/* Let the page gradient show through section elements by default */
section {
    background: transparent;
}

/* Header */
header {
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* padding: 2rem; */
    max-width: 1200px;
    margin: 0 auto;
}


/* .main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 80px;
    min-height: 100%;
    text-align: center;
}  */
  
/* Footer - remove sticky positioning */
.footer-section {
    /* background-color: red; */
    margin-top: auto;
    color: #64748b;
}

.support-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
