/* Performance optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-color: #40151B;
    --primary-dark: #2d0f13;
    --primary-light: #5a1f27;
    --primary-glow: rgba(64, 21, 27, 0.4);
    --text-light: #ffffff;
    --text-gray: #e5e5e5;
    --text-muted: #b0b0b0;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(26, 26, 26, 0.8);
    --border-color: rgba(64, 21, 27, 0.3);
    --shadow-glow: rgba(64, 21, 27, 0.5);
}

html {
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)), url('../assets/images/shapka.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-light);
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    touch-action: manipulation;
}

body.loading {
    visibility: hidden;
}

body.loaded {
    visibility: visible;
}

/* Decorative Background Elements */
body::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(64, 21, 27, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
    content-visibility: auto;
}

body::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(64, 21, 27, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 5s ease-in-out infinite 1s;
    content-visibility: auto;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body.loading * {
    animation: none !important;
}

body.loaded .container {
    animation: fadeInUp 0.6s ease-out;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem clamp(1rem, 4vw, 2rem);
    text-align: center;
    position: relative;
    z-index: 10;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: visible;
    box-sizing: border-box;
}

/* Very Small Mobile Devices (320px - 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0.5rem 0.75rem;
        padding: 0.5rem max(0.75rem, env(safe-area-inset-left));
    }

    .logo {
        width: 70px;
        height: 70px;
        max-width: min(20vw, 90px);
        max-height: min(20vw, 90px);
        min-width: 60px;
        min-height: 60px;
    }

    .logo-container {
        padding: 6px 0;
        min-height: 70px;
    }

    .logo-glow {
        inset: -10px;
        filter: blur(20px);
        opacity: 0.5;
    }

    h1 {
        font-size: clamp(1.25rem, 10vw, 1.75rem);
        margin-bottom: 0.25rem;
    }

    .subtitle {
        font-size: clamp(0.75rem, 4vw, 0.875rem);
    }

    .status-badge {
        font-size: 0.5rem;
        padding: 0.2rem 0.4375rem;
    }

    .message {
        padding: 0.75rem 0.75rem;
    }

    .message-text {
        font-size: clamp(0.8125rem, 4.5vw, 0.9375rem);
    }

    .message-subtext {
        font-size: clamp(0.625rem, 3.5vw, 0.75rem);
    }

    .feature {
        padding: 0.75rem 0.625rem;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .feature-title {
        font-size: 0.8125rem;
    }

    .feature-description {
        font-size: 0.625rem;
    }
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}


.logo-wrapper {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    overflow: visible;
    max-width: 100%;
}

.logo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.logo {
    position: relative;
    width: 100px;
    height: 100px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px var(--shadow-glow));
    z-index: 2;
    display: block;
    margin: 0 auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.3125rem 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    line-height: 1;
}

body.loaded .status-badge {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.status-badge-dot {
    width: 5px;
    height: 5px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 107, 107, 0.7);
    flex-shrink: 0;
    display: inline-block;
}

.status-badge-text {
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: inherit;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gradient-text {
    display: inline-block;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-gray);
}

.progress-percent {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
    display: inline-block;
}

.subtitle {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.message {
    background: linear-gradient(135deg, rgba(64, 21, 27, 0.25) 0%, rgba(90, 31, 39, 0.2) 100%);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.message:hover {
    transform: translateY(-2px);
    border-color: rgba(64, 21, 27, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.message-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 0.75rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-icon svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.message-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.message-subtext {
    font-size: clamp(0.8125rem, 2vw, 0.9375rem);
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.feature {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: 0 15px 40px rgba(64, 21, 27, 0.3), 0 0 30px var(--primary-glow);
    background: rgba(26, 26, 26, 0.9);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(64, 21, 27, 0.3));
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    color: var(--primary-light);
    filter: drop-shadow(0 6px 12px rgba(64, 21, 27, 0.5));
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
}

.feature:hover .feature-title {
    color: var(--text-light);
}

.feature-description {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.feature:hover .feature-description {
    color: var(--text-gray);
}

.footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer:hover {
    opacity: 1;
}

.footer p {
    margin: 0;
}

/* Optimize animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Tablet and Mobile */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    body {
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
        min-height: -webkit-fill-available;
    }

    .container {
        padding: 0.75rem 1rem;
        padding: 0.75rem max(1rem, env(safe-area-inset-left));
        max-height: 100vh;
        max-height: 100dvh;
        max-height: -webkit-fill-available;
        min-height: auto;
        width: 100%;
        min-width: 0;
    }

    h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        margin-bottom: 0.75rem;
    }

    .logo-container {
        margin-bottom: 0.75rem;
        padding: 10px 0;
        min-height: 100px;
    }

    .logo {
        width: 100px;
        height: 100px;
        max-width: min(25vw, 120px);
        max-height: min(25vw, 120px);
        min-width: 80px;
        min-height: 80px;
    }

    .logo-glow {
        inset: -15px;
        filter: blur(30px);
        opacity: 0.7;
    }

    .status-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.625rem;
        margin-bottom: 0.5rem;
        gap: 0.25rem;
    }

    .status-badge-dot {
        width: 4px;
        height: 4px;
    }

    .message {
        padding: 1rem 1rem;
        margin: 0.75rem 0;
        border-radius: 0.875rem;
    }

    .message-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.5rem;
    }

    .message-text {
        font-size: clamp(0.9375rem, 4vw, 1.125rem);
        margin-bottom: 0.5rem;
    }

    .message-subtext {
        font-size: clamp(0.75rem, 3.5vw, 0.875rem);
        line-height: 1.5;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .feature {
        padding: 1rem 0.875rem;
        border-radius: 1rem;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.625rem;
    }

    .feature-title {
        font-size: 0.9375rem;
        margin-bottom: 0.375rem;
    }

    .feature-description {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .footer {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        font-size: 0.6875rem;
    }

    body::before,
    body::after {
        width: 200px;
        height: 200px;
        opacity: 0.5;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0.5rem 0.875rem;
        padding: 0.5rem max(0.875rem, env(safe-area-inset-left));
    }

    .logo {
        width: 80px;
        height: 80px;
        max-width: min(22vw, 100px);
        max-height: min(22vw, 100px);
        min-width: 70px;
        min-height: 70px;
    }

    .logo-container {
        margin-bottom: 0.5rem;
        padding: 8px 0;
        min-height: 80px;
    }

    .logo-glow {
        inset: -12px;
        filter: blur(25px);
        opacity: 0.6;
    }

    h1 {
        font-size: clamp(1.5rem, 9vw, 2rem);
        margin-bottom: 0.375rem;
    }

    .subtitle {
        font-size: clamp(0.8125rem, 4vw, 0.9375rem);
        margin-bottom: 0.625rem;
    }

    .status-badge {
        font-size: 0.5625rem;
        padding: 0.2rem 0.5rem;
    }

    .message {
        padding: 0.875rem 0.875rem;
        margin: 0.625rem 0;
    }

    .message-text {
        font-size: clamp(0.875rem, 4.5vw, 1rem);
    }

    .message-subtext {
        font-size: clamp(0.6875rem, 3.5vw, 0.8125rem);
    }

    .features {
        gap: 0.625rem;
    }

    .feature {
        padding: 0.875rem 0.75rem;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-title {
        font-size: 0.875rem;
    }

    .feature-description {
        font-size: 0.6875rem;
    }

    .footer {
        font-size: 0.625rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .container {
        max-height: 100vh;
        max-height: 100dvh;
        padding: 0.5rem 1rem;
    }

    .logo {
        width: 80px;
        height: 80px;
        max-width: 90px;
        max-height: 90px;
    }

    .logo-container {
        padding: 6px 0;
    }

    .logo-glow {
        inset: -12px;
        filter: blur(25px);
    }

    h1 {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }

    .subtitle {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .message {
        padding: 0.75rem 1rem;
        margin: 0.5rem 0;
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .feature {
        padding: 0.75rem 0.5rem;
    }
}

/* Tablets (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 1.5rem clamp(1.5rem, 5vw, 2.5rem);
    }

    .logo {
        width: 140px;
        height: 140px;
        max-width: 160px;
        max-height: 160px;
    }

    .logo-container {
        margin-bottom: 1.25rem;
        padding: 15px 0;
        min-height: 140px;
    }

    .logo-glow {
        inset: -25px;
        filter: blur(45px);
        opacity: 0.85;
    }

    h1 {
        font-size: clamp(2.25rem, 6vw, 3rem);
        margin-bottom: 0.75rem;
    }

    .subtitle {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        margin-bottom: 1.5rem;
    }

    .status-badge {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.75rem;
        margin-bottom: 0.625rem;
    }

    .message {
        padding: 2rem 2rem;
        margin: 1.5rem 0;
    }

    .message-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }

    .message-text {
        font-size: clamp(1.125rem, 3vw, 1.375rem);
    }

    .message-subtext {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .feature {
        padding: 1.75rem 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    .footer {
        margin-top: 1rem;
        padding-top: 1rem;
        font-size: 0.8125rem;
    }
}

/* Laptops (1024px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .container {
        max-width: 1100px;
        padding: 1.5rem 2.5rem;
    }

    .logo {
        width: 150px;
        height: 150px;
        max-width: 170px;
        max-height: 170px;
    }

    .logo-container {
        margin-bottom: 1.25rem;
        padding: 18px 0;
        min-height: 150px;
    }

    .logo-glow {
        inset: -25px;
        filter: blur(45px);
        opacity: 0.85;
    }

    h1 {
        font-size: clamp(2.75rem, 5vw, 3.5rem);
    }

    .subtitle {
        font-size: clamp(1.125rem, 2vw, 1.375rem);
    }

    .message {
        padding: 2.5rem 2.5rem;
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .feature {
        padding: 2rem 1.75rem;
    }
}

/* Large Monitors (1440px - 1920px) - 21-24 inch */
@media (min-width: 1441px) and (max-width: 1920px) {
    .container {
        max-width: 1200px;
        padding: 2rem 3rem;
    }

    .logo {
        width: 160px;
        height: 160px;
        max-width: 180px;
        max-height: 180px;
    }

    .logo-container {
        margin-bottom: 1.5rem;
        padding: 20px 0;
        min-height: 160px;
    }

    .logo-glow {
        inset: -30px;
        filter: blur(50px);
        opacity: 0.9;
    }

    h1 {
        font-size: clamp(3rem, 4.5vw, 3.75rem);
    }

    .subtitle {
        font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    }

    .message {
        padding: 2.75rem 3rem;
        margin: 0rem;
    }

    .message-text {
        font-size: clamp(1.375rem, 2vw, 1.5rem);
    }

    .message-subtext {
        font-size: clamp(1rem, 1.5vw, 1.125rem);
    }

    .features {
        gap: 2.5rem;
        margin-top: 2rem;
    }

    .feature {
        padding: 2.25rem 2rem;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-title {
        font-size: 1.375rem;
    }

    .feature-description {
        font-size: 1rem;
    }
}

/* Extra Large Monitors (1920px+) - 27+ inch and 4K */
@media (min-width: 1921px) {
    .container {
        max-width: 1400px;
        padding: 2.5rem 4rem;
    }

    .logo {
        width: 180px;
        height: 180px;
        max-width: 200px;
        max-height: 200px;
    }

    .logo-container {
        margin-bottom: 1.75rem;
        padding: 25px 0;
        min-height: 180px;
    }

    .logo-glow {
        inset: -35px;
        filter: blur(55px);
        opacity: 0.9;
    }

    h1 {
        font-size: clamp(3.5rem, 4vw, 4.25rem);
    }

    .subtitle {
        font-size: clamp(1.375rem, 1.6vw, 1.625rem);
        margin-bottom: 2rem;
    }

    .status-badge {
        font-size: 0.8125rem;
        padding: 0.375rem 1rem;
        margin-bottom: 1rem;
    }

    .message {
        padding: 3rem 3.5rem;
        margin: 2.5rem 0;
    }

    .message-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1.25rem;
    }

    .message-text {
        font-size: clamp(1.5rem, 1.8vw, 1.75rem);
    }

    .message-subtext {
        font-size: clamp(1.125rem, 1.4vw, 1.25rem);
    }

    .features {
        gap: 3rem;
        margin-top: 2.5rem;
    }

    .feature {
        padding: 2.5rem 2.25rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .feature-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .feature-description {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .footer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        font-size: 0.9375rem;
    }

    body::before,
    body::after {
        width: 700px;
        height: 700px;
    }
}

/* Ultra Wide Monitors (2560px+) */
@media (min-width: 2560px) {
    .container {
        max-width: 1600px;
    }

    h1 {
        font-size: 4.5rem;
    }

    .subtitle {
        font-size: 1.75rem;
    }

    .message {
        padding: 3.5rem 4rem;
    }
}
