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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #39FF14 0%, #00FF00 50%, #32CD32 100%);
    color: #1a1a1a;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%2339FF14"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>'), auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Floating Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-bone {
    position: absolute;
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
}

.floating-bone::before,
.floating-bone::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.floating-bone::before {
    top: -5px;
    left: -5px;
}

.floating-bone::after {
    top: -5px;
    right: -5px;
}

.bone-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bone-2 {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.floating-paw {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-paw::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.paw-1 {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.paw-2 {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

.paw-3 {
    top: 80%;
    right: 40%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Typography */
.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-shadow: 
        3px 3px 0px rgba(255, 255, 255, 0.8),
        6px 6px 0px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(5deg);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

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

.hero-image-container {
    margin-bottom: 2rem;
    animation: bob 3s ease-in-out infinite;
}

.hero-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px) scale(1.05);
}

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

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-shadow: 
        4px 4px 0px rgba(255, 255, 255, 0.8),
        8px 8px 0px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(5deg);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 600;
}

.ticker-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ticker-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Easter Egg Section */
.easter-egg-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.easter-egg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.easter-egg-hint {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.easter-egg-bone {
    font-size: 3rem;
    cursor: pointer;
    display: inline-block;
    margin: 1rem 0;
    transition: all 0.3s ease;
    animation: boneBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.easter-egg-bone:hover {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.easter-egg-bone:active {
    transform: scale(0.9) rotate(-15deg);
}

@keyframes boneBounce {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.easter-egg-counter {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hidden-easter-eggs {
    position: relative;
    height: 100px;
    margin: 1rem 0;
}

.easter-egg-item {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.easter-egg-item.found {
    opacity: 1;
    transform: scale(1);
    animation: eggFound 0.6s ease-out;
}

.easter-egg-item:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

@keyframes eggFound {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.3) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

/* Position hidden eggs */
#egg1 { top: 20px; left: 20px; }
#egg2 { top: 20px; right: 20px; }
#egg3 { top: 50px; left: 50%; transform: translateX(-50%); }
#egg4 { bottom: 20px; left: 20px; }
#egg5 { bottom: 20px; right: 20px; }

.easter-egg-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.achievement {
    background: linear-gradient(135deg, #FFD93D, #FF6B6B);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.3;
    transform: scale(0.8);
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.achievement.unlocked {
    opacity: 1;
    transform: scale(1);
    animation: achievementUnlock 0.8s ease-out;
}

@keyframes achievementUnlock {
    0% { transform: scale(0.8) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.2),
        0 15px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    font-family: 'Fredoka', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 11px 0 rgba(0, 0, 0, 0.2),
        0 20px 25px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 
        0 5px 0 rgba(0, 0, 0, 0.2),
        0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
}

.btn-upload {
    background: linear-gradient(135deg, #A8E6CF, #7FCDCD);
    color: #1a1a1a;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.1);
}

.about-lore {
    font-size: 1.3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: #333;
}

.about-references {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reference-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 20px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(5deg);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.reference-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 25px 0 rgba(0, 0, 0, 0.05);
    border-color: rgba(57, 255, 20, 0.5);
}

.reference-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

.reference-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reference-link {
    display: inline-block;
    background: linear-gradient(135deg, #39FF14, #00FF00);
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.2),
        0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.reference-link:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 9px 0 rgba(0, 0, 0, 0.2),
        0 15px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #00FF00, #39FF14);
}

.reference-link:active {
    transform: translateY(2px);
    box-shadow: 
        0 3px 0 rgba(0, 0, 0, 0.2),
        0 5px 10px rgba(0, 0, 0, 0.1);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 20px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateX(5deg);
}

.feature-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 25px 0 rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD93D, #FF6B6B);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 5rem 0;
}

.tokenomics-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.pie-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pie-chart {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #FF6B6B 0deg 90deg,
        #4ECDC4 90deg 198deg,
        #A8E6CF 198deg 270deg,
        #FFD93D 270deg 360deg
    );
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 0 0 20px rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pie-chart:hover {
    transform: scale(1.05);
}

.pie-slice {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pie-slice:hover {
    transform: scale(1.1);
}

.slice-label {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.color-1 { background: #FF6B6B; }
.color-2 { background: #4ECDC4; }
.color-3 { background: #A8E6CF; }
.color-4 { background: #FFD93D; }

/* Meme Gallery Section */
.meme-gallery-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.1);
}

.meme-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.meme-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 15px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: perspective(1000px) rotateY(0deg);
    cursor: pointer;
}

.meme-card:hover {
    transform: perspective(1000px) rotateY(5deg) translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 20px 0 rgba(0, 0, 0, 0.05);
}

.meme-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 500;
    border: 2px dashed #ccc;
}

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

.upload-section p {
    margin-top: 1rem;
    color: #666;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 15px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 20px 0 rgba(0, 0, 0, 0.05);
}

.paw-icon {
    width: 30px;
    height: 30px;
    background: #39FF14;
    border-radius: 50%;
    position: relative;
}

.paw-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #1a1a1a;
    border-radius: 50%;
}

.footer-disclaimer {
    color: #666;
    font-size: 0.9rem;
}

.footer-references {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.footer-references a {
    color: #39FF14;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.footer-references a:hover {
    color: #00FF00;
    background: rgba(57, 255, 20, 0.1);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* Contract Address Section */
.contract-address-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(57, 255, 20, 0.3);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contract-label {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    background: rgba(57, 255, 20, 0.1);
    padding: 1rem;
    border-radius: 15px;
    margin: 1rem 0;
    word-break: break-all;
    border: 2px solid rgba(57, 255, 20, 0.2);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contract-address:hover {
    background: rgba(57, 255, 20, 0.15);
    border-color: rgba(57, 255, 20, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.2);
}

.copy-btn {
    background: linear-gradient(135deg, #39FF14, #00FF00);
    color: #1a1a1a;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    font-family: 'Fredoka', sans-serif;
}

.copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #00FF00, #39FF14);
}

.copy-btn:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #FFD93D, #FF6B6B);
    animation: copySuccess 0.6s ease-out;
}

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

@keyframes slideInRight {
    0% { 
        transform: translateX(100%); 
        opacity: 0; 
    }
    100% { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes slideOutRight {
    0% { 
        transform: translateX(0); 
        opacity: 1; 
    }
    100% { 
        transform: translateX(100%); 
        opacity: 0; 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-references {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reference-card {
        padding: 1.5rem;
    }
    
    .reference-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .pie-chart {
        width: 250px;
        height: 250px;
    }
    
    .pie-legend {
        grid-template-columns: 1fr;
    }
    
    .meme-gallery {
        grid-template-columns: 1fr;
    }
    
    .easter-egg-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .easter-egg-hint {
        font-size: 0.9rem;
    }
    
    .easter-egg-bone {
        font-size: 2.5rem;
    }
    
    .easter-egg-achievements {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-references {
        text-align: center;
        line-height: 1.8;
    }

    /* Responsive design for contract address */
    .contract-address-container {
        padding: 1rem 1.5rem;
        margin: 1rem;
    }
    
    .contract-address {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .copy-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .ticker-container {
        padding: 0.8rem 1.5rem;
    }
    
    .ticker-text {
        font-size: 1rem;
    }
    
    .easter-egg-section {
        padding: 1rem;
    }
    
    .easter-egg-hint {
        font-size: 0.8rem;
    }
    
    .easter-egg-bone {
        font-size: 2rem;
    }

    .contract-address {
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .contract-label {
        font-size: 0.9rem;
    }
} 