/* Home Page Styles */

/* Main Content */
.main-content {
    padding-top: 4rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

/* Animated Background */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    animation: floating-animation 6s ease-in-out infinite;
}

.floating-circle-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(219, 136, 164, 0.1);
    animation-delay: 0s;
}

.floating-circle-2 {
    top: 10rem;
    right: 5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(115, 143, 189, 0.15);
    animation-delay: 2s;
}

.floating-circle-3 {
    bottom: 5rem;
    left: 33%;
    width: 10rem;
    height: 10rem;
    background: rgba(204, 142, 177, 0.1);
    animation-delay: 4s;
}

.floating-circle-4 {
    top: 8rem;
    left: 50%;
    width: 5rem;
    height: 5rem;
    background: rgba(168, 195, 212, 0.15);
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--kpop-pink);
}

.hero-badge-text {
    color: var(--kpop-pink);
    font-size: 0.875rem;
}

/* Title */
.hero-title {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-title-gradient {
    background: linear-gradient(to right, var(--kpop-pink), var(--kpop-purple), var(--kpop-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 0.25rem;
    line-height: 1.5;
}

/* Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 5rem;
}

.btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
}

/* Feature Cards */
.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto 5rem;
}

.hero-feature-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-feature-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-feature-icon {
    width: 4rem;
    height: 4rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-feature-card:nth-child(1) .hero-feature-icon {
    color: var(--kpop-pink);
}

.hero-feature-card:nth-child(2) .hero-feature-icon {
    color: var(--kpop-purple);
}

.hero-feature-card:nth-child(3) .hero-feature-icon {
    color: var(--kpop-blue);
}

.hero-feature-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(2.5rem);
    z-index: 1;
}

.hero-feature-card:nth-child(1) .hero-feature-glow {
    background: rgba(219, 136, 164, 0.2);
}

.hero-feature-card:nth-child(2) .hero-feature-glow {
    background: rgba(204, 142, 177, 0.2);
}

.hero-feature-card:nth-child(3) .hero-feature-glow {
    background: rgba(115, 143, 189, 0.2);
}

.hero-feature-card:hover .hero-feature-icon {
    transform: scale(1.1);
}

.hero-feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-feature-card:nth-child(1) .hero-feature-title {
    color: var(--kpop-pink);
}

.hero-feature-card:nth-child(2) .hero-feature-title {
    color: var(--kpop-purple);
}

.hero-feature-card:nth-child(3) .hero-feature-title {
    color: var(--kpop-blue);
}

.hero-feature-description {
    color: #6b7280;
    line-height: 1.5;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-stats .hero-stat:nth-child(1) .hero-stat-number {
    color: var(--kpop-pink);
}

.hero-stats .hero-stat:nth-child(2) .hero-stat-number {
    color: var(--kpop-purple);
}

.hero-stats .hero-stat:nth-child(3) .hero-stat-number {
    color: var(--kpop-blue);
}

.hero-stats .hero-stat:nth-child(4) .hero-stat-number {
    color: var(--kpop-light-blue);
}

.hero-stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--kpop-pink);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--kpop-pink), var(--kpop-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.section-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.section-footer .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}
Oppu

/* Comeback Section */
.comeback-section {
    padding: 5rem 0;
    position: relative;
    margin-bottom: 4rem;
}

.comeback-section::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: rgba(219, 136, 164, 0.05);
    filter: blur(3rem);
    z-index: 1;
}

.comeback-section::after {
    content: '';
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(115, 143, 189, 0.08);
    filter: blur(3rem);
    z-index: 1;
}

.comeback-section .container {
    position: relative;
    z-index: 10;
}

.comeback-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.comeback-section .section-header {
    display: flex;
    flex-direction: column; /* elementi in colonna */
    align-items: center;    /* centra orizzontalmente */
    text-align: center;     /* centra testo all'interno */
    margin-bottom: 4rem;
    gap: 1rem;
}

.hottest-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-family: "Jersey 25", cursive;
    font-size: 0.875rem;
    box-shadow: 0 0 30px rgba(219, 136, 164, 0.2);
    background: linear-gradient(135deg, var(--kpop-blue), var(--kpop-purple), var(--kpop-pink));
}

.comeback-section .section-title {
    font-size: 3.75rem;
    background: linear-gradient(to right, var(--kpop-pink), var(--kpop-purple), var(--kpop-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.comeback-section .section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
}

.comeback-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.comeback-card {
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.comeback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(219, 136, 164, 0.25);
}

/* Image Container */
.comeback-image-container {
    position: relative;
    width: 100%;
    height: 12rem;
    overflow: hidden;
}

.comeback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.comeback-card:hover .comeback-image {
    transform: scale(1.1);
}

.comeback-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
}

/* Badges */
.comeback-hot-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(to right, #ef4444, #f97316);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-family: "Jersey 25", cursive;
    font-size: 0.75rem;
    font-weight: 500;
    border: none;
}

.comeback-genre-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-family: "Jersey 25", cursive;
    font-size: 0.75rem;
    border: none;
}

/* Countdown Overlay */
.comeback-countdown-overlay {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
}

.comeback-countdown-card {
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.comeback-countdown-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comeback-countdown-number {
    font-size: 1.5rem;
    color: var(--kpop-pink);
}

.comeback-countdown-label {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Hover Play Button */
.comeback-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comeback-card:hover .comeback-hover-overlay {
    opacity: 1;
}

.comeback-play-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.comeback-play-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.25rem;
}

/* Content */
.comeback-content {
    padding: 1rem;
}

.comeback-title {
    color: var(--foreground);
    transition: color 0.3s ease;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.comeback-card:hover .comeback-title {
    color: var(--kpop-pink);
}

.comeback-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.comeback-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.comeback-date,
.comeback-likes {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #9ca3af;
}

.comeback-icon {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.25rem;
}

.comeback-actions {
    display: flex;
    gap: 0.5rem;
}

.comeback-notify-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(115, 143, 189, 0.15);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.comeback-notify-btn:hover {
    background: rgba(219, 136, 164, 0.1);
    border-color: var(--kpop-pink);
}

/* Releases Section */
.releases-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.releases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.release-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.release-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(219, 136, 164, 0.2);
}

.release-layout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

.release-image {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.release-info {
    min-width: 0;
}

.release-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.release-artist {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.release-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.release-actions {
    display: flex;
    gap: 0.5rem;
}

.release-action-btn {
    padding: 0.5rem;
    background: var(--input-background);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.3s ease;
}

.release-action-btn:hover {
    background: var(--accent);
}

.release-action-btn svg {
    width: 1rem;
    height: 1rem;
}

.new-badge {
    padding: 0.25rem 0.5rem;
    background: #22c55e;
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Playlists Section */
.playlists-section {
    padding: 4rem 0;
    background: var(--muted);
    border-radius: var(--radius-xl);
    margin-bottom: 4rem;
}

.playlists-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.playlist-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.playlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(219, 136, 164, 0.2);
}

.playlist-layout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

.playlist-image {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: var(--radius-md);
    position: relative;
}

.playlist-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.playlist-card:hover .playlist-overlay {
    opacity: 1;
}

.play-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.playlist-info {
    min-width: 0;
}

.playlist-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.playlist-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.playlist-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.official-badge {
    padding: 0.25rem 0.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Groups Section */
.groups-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.groups-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.group-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.group-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(219, 136, 164, 0.2);
}

.group-layout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

.group-image {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.group-info {
    min-width: 0;
}

.group-name {
    font-family: "Jersey 25", cursive;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.group-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.group-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Community Section */
.community-section {
    padding: 4rem 0;
    background: var(--muted);
    border-radius: var(--radius-xl);
    margin-bottom: 4rem;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.community-post {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.community-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(219, 136, 164, 0.15);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.post-user-info {
    flex: 1;
}

.post-username {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.post-timestamp {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.post-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.post-actions {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.post-action {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.post-action:hover {
    color: var(--foreground);
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.newsletter-content {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--kpop-pink), var(--kpop-purple));
    color: white;
    border: none;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 25rem;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--foreground);
}

.newsletter-input::placeholder {
    color: rgba(45, 45, 45, 0.7);
}

/* Widgets */
.countdown-widget {
    width: 12rem;
    text-align: center;
}

.countdown-title {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.countdown-artist {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.countdown-album {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-family: "Jersey 25", cursive;
    font-size: 1.5rem;
    color: var(--primary);
    animation: countdown-pulse 2s ease-in-out infinite;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

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

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}


.footer-subtitle {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--foreground);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--muted);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: row;
    }
    
    .hero-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .comeback-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .releases-grid,
    .playlists-grid,
    .groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        max-width: 30rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
    
    .comeback-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .releases-grid,
    .playlists-grid,
    .groups-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature-card {
        padding: 1.5rem;
    }
    
    .hero-feature-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .hero-feature-title {
        font-size: 1.25rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        margin-bottom: 1rem;
    }
}
