/* ============================================
   Safe in Sound - Main Styles
   ============================================ */

/* ============================================
   CSS Reset & Base Styles
   ============================================ */

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

:root {
    /* Safe in Sound Brand Colors - Warm & Approachable */

    /* Primary Brand Colors (Mix of Blue & Purple families) */
    --color-primary: #5856D6;           /* Indigo - Core brand color */
    --color-primary-dark: #4644B8;      /* Darker Indigo for hovers */
    --color-primary-light: #E5E4FF;     /* Light Indigo backgrounds */
    --color-secondary: #AF52DE;         /* Soft Purple - Secondary brand */
    --color-secondary-light: #F3E5FF;   /* Light Purple backgrounds */
    --color-tertiary: #007AFF;          /* Royal Blue - Tertiary brand */
    --color-tertiary-dark: #0051D5;     /* Darker Blue for hovers */

    /* Accent Colors */
    --color-accent: #5AC8FA;            /* Teal - Fresh accent */
    --color-accent-light: #E3F7FF;      /* Light Teal backgrounds */

    /* Safety/Status Colors (Subtle usage) */
    --color-success: #34C759;           /* Meadow Green - Safe */
    --color-warning: #FF9500;           /* Amber - Caution */
    --color-danger: #FF3B30;            /* Coral Red - Warning */

    /* Neutral Palette (Warm grays) */
    --color-text-primary: #1C1C1E;      /* Charcoal */
    --color-text-secondary: #636366;    /* Warm Gray */
    --color-text-tertiary: #AEAEB2;     /* Light Gray */
    --color-background: #FFFFFF;        /* Pure White */
    --color-background-secondary: #F2F2F7;  /* Cloud */
    --color-background-tertiary: #FAFAFA;   /* Off-white */
    --color-border: #D1D1D6;            /* Warm border gray */

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container Width */
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.015em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    letter-spacing: -0.01em;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ============================================
   Layout Utilities
   ============================================ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ============================================
   Launch Announcement Banner
   ============================================ */

.launch-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: white;
    padding: 0.75rem 0;
    z-index: 1001;
    text-align: center;
    box-shadow: 0 2px 8px rgba(88, 86, 214, 0.15);
}

.launch-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.launch-emoji {
    font-size: 1.25rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.launch-text {
    font-size: 0.95rem;
    font-weight: var(--font-weight-regular);
}

.launch-text strong {
    font-weight: var(--font-weight-semibold);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: background var(--transition-medium);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .nav-links {
        gap: var(--spacing-md);
    }

    .nav-links a {
        font-size: 0.875rem;
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-primary) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(88, 86, 214, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-tertiary-dark) 0%, var(--color-primary-dark) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 86, 214, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.beta-icon {
    width: 24px;
    height: 24px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--color-background-tertiary) 0%, var(--color-background) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-secondary);
}

.hero-cta {
    margin-top: var(--spacing-xl);
}

.hero-cta .app-store-badge {
    display: inline-block;
    transition: all var(--transition-fast);
}

.hero-cta .app-store-badge:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
}

.hero-cta .app-store-img {
    height: 60px;
    width: auto;
    display: block;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-frame {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.2));
}

.phone-screen-content {
    position: absolute;
    top: 2.3%;
    left: 50%;
    transform: translateX(-50%);
    width: 91%;
    height: 96.7%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 40px;
    z-index: 1;
}

.hero-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Legacy support */
.phone-mockup {
    width: 260px;
    height: 536px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hero-image {
        order: -1;
    }

    .phone-frame-container {
        width: 260px;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }
}

/* ============================================
   Section Styles
   ============================================ */

section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Features Section
   ============================================ */

.features {
    background: var(--color-background-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.feature-card {
    background: var(--color-background);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.feature-title {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ============================================
   Screenshots Section
   ============================================ */

.screenshots {
    background: var(--color-background);
}

.screenshots-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.screenshot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    justify-content: center;
}

.screenshot-frame-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.screenshot-frame-container:hover {
    transform: translateY(-8px);
}

.screenshot-frame {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));
}

.screenshot-content {
    position: absolute;
    top: 2.3%;
    left: 50%;
    transform: translateX(-50%);
    width: 91%;
    height: 96.7%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 40px;
    z-index: 1;
}

.screenshot-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Legacy support for unframed screenshots */
.screenshot-card img:not(.screenshot-frame):not(.screenshot-content img) {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-medium);
}

.screenshot-card img:not(.screenshot-frame):not(.screenshot-content img):hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.screenshot-label {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
}

.screenshot-placeholder {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, var(--color-background-secondary) 0%, var(--color-secondary-light) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-lg);
    border: 2px dashed var(--color-border);
    transition: all var(--transition-medium);
}

.screenshot-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--color-accent);
}

.screenshot-placeholder p {
    color: var(--color-text-tertiary);
    font-size: 1rem;
}

.screenshot-placeholder small {
    display: block;
    margin-top: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--color-text-tertiary);
}

.screenshots-note {
    text-align: center;
    margin-top: var(--spacing-xl);
    color: var(--color-text-tertiary);
    font-size: 0.95rem;
}

/* ============================================
   Download Section
   ============================================ */

.download {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: white;
}

.download .section-title,
.download .section-subtitle {
    color: white;
}

.download-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.download .app-store-badge {
    display: inline-block;
    transition: all var(--transition-fast);
    opacity: 0.95;
}

.download .app-store-badge:hover {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
}

.download .app-store-img {
    height: 60px;
    width: auto;
    display: block;
}

.qr-code-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.qr-code-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    margin: 0;
}

.qr-code-img {
    width: 150px;
    height: 150px;
    background: white;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-fast);
}

.qr-code-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.download-info {
    margin-top: var(--spacing-md);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ============================================
   About Section
   ============================================ */

.about {
    background: var(--color-background-secondary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    background: var(--color-background);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.about-text p:last-child {
    margin-bottom: 0;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--color-text-primary);
    color: white;
    padding: var(--spacing-xl) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ============================================
   Beta Access Modal
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform var(--transition-medium);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-tertiary);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--color-background-secondary);
    color: var(--color-text-primary);
}

.modal h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.modal-subtitle {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: var(--spacing-xl);
}

.beta-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-background);
    color: var(--color-text-primary);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.beta-form .btn {
    margin-top: var(--spacing-sm);
    width: 100%;
}

/* ============================================
   Accessibility & Focus States
   ============================================ */

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-sm);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-to-content:focus {
    top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-text-secondary: #000000;
        --color-border: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-carousel {
        grid-template-columns: 1fr;
    }

    section {
        padding: var(--spacing-2xl) 0;
    }

    .hero {
        padding: calc(80px + var(--spacing-2xl)) 0 var(--spacing-2xl) 0;
    }

    /* Hide QR code on tablets and mobile - they can click directly */
    .qr-code-section {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .nav-links {
        gap: 0.4rem;
    }

    .nav-links a {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .nav-content {
        padding: 0.5rem 0;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .btn {
        width: 100%;
    }

    .launch-text {
        font-size: 0.875rem;
    }

    .launch-emoji {
        font-size: 1.1rem;
    }

    .footer-links {
        gap: 0.75rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* ============================================
   Toast Notification Styles
   ============================================ */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    max-width: 400px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all var(--transition-medium);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-success .notification-icon {
    color: #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-error .notification-icon {
    color: #ef4444;
}

.notification-message {
    flex: 1;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.notification-close:hover {
    color: var(--color-text-primary);
}

@media (max-width: 480px) {
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .nav,
    .download,
    .footer,
    .notification {
        display: none;
    }

    * {
        background: white !important;
        color: black !important;
    }
}
