/* GetHappyMates.click - Nordic/Viking Theme */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1A2332;
    background: linear-gradient(135deg, #2C3E50 0%, #4A6741 25%, #5D7B8D 50%, #708090 75%, #87CEEB 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    color: #34495E;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 1px;
}

h1 { font-size: 2.8rem; font-weight: 900; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.7rem; }

p {
    margin-bottom: 1rem;
    color: #2C3E50;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, #34495E, #5D7B8D, #708090);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.4);
    border-bottom: 3px solid #87CEEB;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.9rem;
    font-weight: 900;
    color: #E8F4F8;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    letter-spacing: 2px;
    font-family: 'Impact', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    color: #E8F4F8;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(135, 206, 235, 0.3);
    color: #F0F8FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #E8F4F8;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section - Redesigned */
.hero-section {
    text-align: center;
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, rgba(230, 245, 255, 0.95) 0%, rgba(176, 224, 246, 0.85) 50%, rgba(135, 206, 235, 0.9) 100%);
    margin-bottom: 3rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(135, 206, 235, 0.5);
    box-shadow: 0 20px 60px rgba(52, 73, 94, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(135, 206, 235, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(93, 123, 141, 0.2) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hero-pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(135, 206, 235, 0.05) 35px, rgba(135, 206, 235, 0.05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(93, 123, 141, 0.04) 35px, rgba(93, 123, 141, 0.04) 70px);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: heroFadeIn 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 248, 255, 0.8));
    color: #34495E;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 2px solid rgba(135, 206, 235, 0.6);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(135, 206, 235, 0.5);
    }
}

.hero-title {
    font-size: 4.5rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, #34495E 0%, #5D7B8D 50%, #708090 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.15));
    animation: titleShine 3s ease-in-out infinite;
}

.title-line-2 {
    display: block;
    font-size: 5rem;
    background: linear-gradient(135deg, #87CEEB 0%, #5D7B8D 50%, #34495E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
    animation: titleShine 3s ease-in-out infinite 0.5s;
}

@keyframes titleShine {
    0%, 100% {
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.15)) brightness(1);
    }
    50% {
        filter: drop-shadow(3px 3px 8px rgba(135, 206, 235, 0.4)) brightness(1.1);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #34495E;
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    margin: 2.5rem 0;
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-image {
    max-width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(135, 206, 235, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.4) 0%, transparent 70%);
    border-radius: 20px;
    z-index: 1;
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-cta {
    margin-top: 2.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #87CEEB 0%, #5D7B8D 100%);
    color: #FFFFFF;
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.5), 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Impact', sans-serif;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.7), 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #B0E0E6 0%, #87CEEB 100%);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.deco-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #87CEEB, transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.deco-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #5D7B8D, transparent);
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.deco-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #708090, transparent);
    top: 20%;
    right: -80px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #F0F8FF, #E8F4F8);
    border: 3px solid #5D7B8D;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(93, 123, 141, 0.3);
    position: relative;
}

.disclaimer-section::before {
    content: "⚔️";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #5D7B8D;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.4rem;
    color: white;
}

.disclaimer-title {
    color: #34495E;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: 900;
}

.disclaimer-text {
    color: #2C3E50;
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    font-weight: 500;
}

/* Game Section */
.game-section {
    background: rgba(248, 248, 255, 0.15);
    border-radius: 20px;
    padding: 3.5rem 0;
    text-align: center;
    margin: 3rem 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(135, 206, 235, 0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.game-title {
    font-size: 2.5rem;
    color: #34495E;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-weight: 900;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 506px; /* 16:9 aspect ratio */
    border: 4px solid #87CEEB;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    background: #F0F8FF;
}

/* About Section */
.about-section {
    background: rgba(240, 248, 255, 0.9);
    border-radius: 18px;
    padding: 3.5rem;
    margin: 3rem 0;
    border: 2px solid #B0E0E6;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3.5rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 3px solid #5D7B8D;
}

.about-content h2 {
    color: #34495E;
    margin-bottom: 1.8rem;
    font-weight: 900;
}

.about-content p {
    color: #2C3E50;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #E8F4F8, #F0F8FF);
    border-radius: 18px;
    padding: 3.5rem;
    margin: 3rem 0;
    border: 2px solid #87CEEB;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #87CEEB;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-rating {
    color: #87CEEB;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.review-text {
    color: #2C3E50;
    font-style: italic;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.review-author {
    color: #34495E;
    font-weight: bold;
    text-align: right;
}

/* Features Section */
.features-section {
    background: rgba(176, 224, 230, 0.7);
    border-radius: 18px;
    padding: 3.5rem;
    margin: 3rem 0;
    border: 2px solid #5D7B8D;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-top: 5px solid #87CEEB;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: #34495E;
    margin-bottom: 1.2rem;
    font-weight: 900;
}

.feature-card p {
    color: #2C3E50;
    font-size: 1rem;
    line-height: 1.6;
}

/* Content Pages */
.content-page {
    padding: 3.5rem 0;
}

.content-page h1 {
    text-align: center;
    margin-bottom: 3.5rem;
    color: #34495E;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.content-section {
    background: rgba(240, 248, 255, 0.95);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 1px solid #B0E0E6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-section h2 {
    color: #34495E;
    border-bottom: 3px solid #87CEEB;
    padding-bottom: 0.8rem;
    margin-bottom: 1.8rem;
}

.content-section h3 {
    color: #5D7B8D;
    margin-top: 1.8rem;
    margin-bottom: 1.2rem;
}

.content-section ul {
    padding-left: 2.2rem;
    margin-bottom: 1.2rem;
}

.content-section li {
    margin-bottom: 0.6rem;
    color: #2C3E50;
    line-height: 1.6;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    margin-top: 2.5rem;
}

.contact-form {
    background: rgba(240, 248, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #5D7B8D;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #34495E;
    font-weight: bold;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #B0E0E6;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 8px rgba(135, 206, 235, 0.4);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.contact-info {
    background: rgba(176, 224, 230, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #5D7B8D;
}

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.8rem;
    border-left: 5px solid #87CEEB;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #34495E, #5D7B8D);
    color: #E8F4F8;
    padding: 3.5rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 4px solid #87CEEB;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: #F0F8FF;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #87CEEB;
    padding-bottom: 0.8rem;
    font-weight: 900;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #E8F4F8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #B0E0E6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-disclaimer {
    background: rgba(135, 206, 235, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border: 1px solid #87CEEB;
    text-align: center;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #5D7B8D;
    color: #B0E0E6;
    font-weight: 500;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #87CEEB, #5D7B8D);
    color: #1A2332;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    font-weight: 900;
    box-shadow: 0 6px 18px rgba(135, 206, 235, 0.4);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px) scale(1.15);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.6);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: linear-gradient(135deg, #F0F8FF, #E8F4F8);
    padding: 2.5rem;
    border-radius: 18px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 4px solid #87CEEB;
    position: relative;
}

.popup-content h2 {
    color: #34495E;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    font-weight: 900;
}

.popup-content p {
    color: #2C3E50;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.popup-buttons {
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: linear-gradient(135deg, #34495E, #5D7B8D);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2.5rem;
        transition: left 0.3s ease;
        gap: 1.2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 1.2rem 2.5rem;
        width: 85%;
        text-align: center;
        border-radius: 12px;
        background: rgba(135, 206, 235, 0.15);
        margin: 0.8rem 0;
        font-size: 1.1rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .container {
        padding: 0 1.2rem;
    }

    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .game-frame {
        height: auto; /* Adjusted for mobile 16:9 ratio */
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.5rem; }

    .popup-content {
        width: 95%;
        padding: 2rem;
    }
}