:root {
    /* Brand Design Token System - Airy & Precision Light Theme */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    
    /* Accents - The NetScore Electric Blue */
    --accent: #35E0ED;
    --accent-indigo: #4f46e5;
    --accent-glow: rgba(53, 224, 237, 0.15);
    --accent-indigo-glow: rgba(79, 70, 229, 0.08);
    
    /* Contrast Slate Grays */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    
    /* Semantics */
    --success: #10b981;
    --error: #ef4444;
    --star-gold: #eab308;
    
    /* Physics & Geometry */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 10px 30px -10px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
    --shadow-hover: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 1px 5px rgba(15, 23, 42, 0.03);
    --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--smooth);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-soft {
    background-color: var(--bg-light);
}

.divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 32px 0;
}

.text-accent {
    color: var(--accent-indigo);
}

/* Accessibility Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-indigo);
    outline-offset: 2px;
}

/* Floating Navigation Bar */
.navbar-wrapper {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.brand-logo svg {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(53, 224, 237, 0.15);
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-indigo);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-indigo);
    font-weight: 600;
}

.admin-pill {
    background-color: var(--accent-indigo-glow);
    color: var(--accent-indigo) !important;
    padding: 6px 12px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.admin-pill::after {
    display: none;
}

.admin-pill:hover {
    background-color: rgba(79, 70, 229, 0.15);
    transform: translateY(-1px);
}

/* Glass Card styling */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--spring), box-shadow 0.4s var(--smooth), border-color 0.3s;
}

/* Interactive States: Smooth Lift without shift */
.glass.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(53, 224, 237, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s var(--smooth);
    border: none;
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 80% 20%, rgba(53, 224, 237, 0.08), transparent 45%),
                radial-gradient(circle at 10% 80%, rgba(79, 70, 229, 0.04), transparent 35%);
    background-color: var(--bg-white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.badge-tag {
    display: inline-block;
    background-color: var(--accent-indigo-glow);
    color: var(--accent-indigo);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.download-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text-primary);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.download-badge:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

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

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.badge-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    color: var(--star-gold);
    font-size: 18px;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Score Display Visual Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-container {
    width: 100%;
    max-width: 380px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--radius-xl) !important;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    align-self: flex-start;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

.indicator-dot.pulse {
    box-shadow: 0 0 10px var(--accent);
    animation: glow-pulse 2s infinite ease-in-out;
}

@keyframes glow-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(53, 224, 237, 0.4); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(53, 224, 237, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(53, 224, 237, 0); }
}

.visual-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.score-circle-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin-bottom: 32px;
}

.score-ring {
    transform: rotate(-90deg);
}

.score-ring-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 12px;
}

.score-ring-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 12px;
    stroke-linecap: round;
    stroke-dasharray: 597;
    stroke-dashoffset: 597;
    transition: stroke-dashoffset 1.5s var(--smooth);
}

.score-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.score-value {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--text-primary);
}

.score-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 4px;
    transition: color 0.3s;
}

.benchmark-details {
    width: 100%;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.detail-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.detail-alert {
    background-color: var(--accent-glow);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 14px;
    text-align: center;
}

/* Grid Sections & Features */
.section-wrapper {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px;
    border-radius: var(--radius-lg) !important;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bg-blue-glow {
    background-color: var(--accent-glow);
    color: var(--text-primary);
}

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

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Technical Specs Section */
.specs-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.specs-content h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.specs-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    margin-bottom: 20px;
}

.specs-list li strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.specs-list li span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.specs-table-wrapper {
    overflow: hidden;
    padding: 32px;
}

.table-header {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.specs-table th {
    padding: 16px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 16px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table td:first-child {
    font-weight: 700;
    color: var(--text-primary);
}

/* Support Form Section */
.support-container {
    display: flex;
    justify-content: center;
}

.support-card {
    width: 100%;
    max-width: 600px;
    padding: 48px;
}

.support-header {
    text-align: center;
    margin-bottom: 36px;
}

.support-header h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.support-header p {
    font-size: 15px;
    color: var(--text-secondary);
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--border-hover);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-indigo);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: var(--error);
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.field-error {
    font-size: 12px;
    font-weight: 600;
    color: var(--error);
    display: none;
}

.form-group.has-error .field-error {
    display: block;
}

/* Spinner & Button Loading State */
.btn-text {
    display: inline-flex;
    align-items: center;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--bg-white);
    animation: spin 0.8s infinite linear;
}

.hidden {
    display: none !important;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Card */
.support-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    animation: fade-in 0.5s var(--smooth) forwards;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon-pulse {
    width: 64px;
    height: 64px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.success-icon {
    width: 32px;
    height: 32px;
}

.support-success h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-success p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 440px;
}

.alert-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fade-in 0.3s var(--smooth);
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Privacy Sub-page Styling */
.privacy-container {
    padding: 160px 0 100px;
    max-width: 800px !important;
}

.privacy-article {
    padding: 56px;
    border-radius: var(--radius-xl) !important;
}

.privacy-article h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.effective-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.privacy-article h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 40px 0 16px;
    color: var(--text-primary);
}

.privacy-article h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.privacy-article p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.privacy-article ul,
.privacy-article ol {
    margin-left: 24px;
    margin-bottom: 24px;
}

.privacy-article li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.privacy-callout {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 28px 0;
}

.privacy-callout strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.privacy-callout ul {
    margin-bottom: 0;
}

/* Footer Section */
.footer-wrapper {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo svg {
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(53, 224, 237, 0.15);
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-group h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Toast Notification */
.toast-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
    animation: slide-up 0.4s var(--spring) forwards;
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.toast-card {
    padding: 16px 20px;
    max-width: 350px;
    border-radius: var(--radius-md) !important;
    border-color: rgba(53, 224, 237, 0.3) !important;
}

.toast-badge {
    background-color: var(--accent);
    color: var(--text-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
}

.toast-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* Responsive Media Queries */

/* Tablet Layout (1024px Breakpoint) */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .rating-info {
        justify-content: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Mobile Layout (768px Breakpoint) */
@media (max-width: 768px) {
    .navbar-wrapper {
        top: 0;
    }
    
    .navbar {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 16px 24px;
    }
    
    .nav-links {
        display: none; /* Hide standard links on mobile */
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .privacy-article {
        padding: 32px 24px;
    }
    
    .privacy-article h1 {
        font-size: 32px;
    }
}

/* Wide Mobile Layout (480px Breakpoint) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .download-badge {
        width: 100%;
        justify-content: center;
    }
    
    .support-card {
        padding: 24px 20px;
    }
}

/* Precise mobile accessibility layout for small screens (375px) */
@media (max-width: 375px) {
    html {
        font-size: 15px;
    }
    
    .navbar {
        padding: 12px 16px;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .btn-primary.btn-sm {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .score-circle-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .score-ring {
        width: 180px;
        height: 180px;
    }
    
    .score-ring-bg,
    .score-ring-fill {
        cx: 90px;
        cy: 90px;
        r: 75px;
        stroke-dasharray: 471;
        stroke-dashoffset: 471;
    }
    
    .score-value {
        font-size: 52px;
    }
}
