* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    margin: 0;
    padding: 0;
    background: #0a0a2e;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    position: relative;
    width: 100vw;
}

.section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.moon-surface {
    position: relative;
}

.moon-surface::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(10, 10, 46, 0.2) 20%,
        rgba(16, 16, 60, 0.4) 40%,
        rgba(26, 26, 74, 0.6) 60%,
        rgba(36, 21, 85, 0.8) 80%,
        rgba(42, 26, 90, 1) 100%
    );
    z-index: 10;
    pointer-events: none;
}

.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.title-section {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.main-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.9),
        0 0 20px rgba(0, 255, 255, 0.7),
        0 0 30px rgba(0, 255, 255, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.main-title span {
    display: inline-block;
    animation: letterFloat 2s ease-in-out infinite;
}

.main-title .letter-m { animation-delay: 0s; }
.main-title .letter-o:nth-child(2) { animation-delay: 0.2s; }
.main-title .letter-o:nth-child(3) { animation-delay: 0.4s; }
.main-title .letter-n { animation-delay: 0.6s; }
.main-title .letter-e { animation-delay: 0.8s; }
.main-title .letter-r { animation-delay: 1s; }

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #87ceeb;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-shadow: 0 0 10px rgba(135, 206, 235, 0.5);
    animation: subtitlePulse 2s ease-in-out infinite;
}

.mascot-container {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.floating-mascot {
    width: clamp(150px, 20vw, 300px);
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: float 3s ease-in-out infinite,
               gentle-glow 2s ease-in-out infinite alternate;
}

.shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    animation: shadowPulse 3s ease-in-out infinite;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.star-2 {
    top: 30%;
    right: 20%;
    animation-delay: 0.5s;
}

.star-3 {
    top: 60%;
    left: 10%;
    animation-delay: 1s;
}

.star-4 {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
}

.star-5 {
    top: 40%;
    left: 80%;
    animation-delay: 2s;
}

/* Animations */
@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(0, 255, 255, 0.9),
            0 0 20px rgba(0, 255, 255, 0.7),
            0 0 30px rgba(0, 255, 255, 0.5),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(0, 255, 255, 1),
            0 0 30px rgba(0, 255, 255, 0.8),
            0 0 45px rgba(0, 255, 255, 0.6),
            2px 2px 6px rgba(0, 0, 0, 0.9);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes letterFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes subtitlePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

@keyframes gentle-glow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    }
}

@keyframes shadowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.1;
        transform: translateX(-50%) scale(0.8);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Social Icons */
.social-icons {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 5;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.1);

}

.social-icon:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}



/* Contract Section */
.contract-section {
    position: absolute;
    top: 47%;
    left: 21%;
    transform: translateX(-50%);
    z-index: 5;
}

.contract-box {
    background: rgba(0, 20, 40, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
    animation: contractGlow 3s ease-in-out infinite alternate;
}

.contract-label {
    color: #87ceeb;
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 0.1em;
}

.contract-address-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    flex: 1;
    word-break: break-all;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.copy-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 6px;
    color: #00ffff;
    cursor: pointer;
    padding: 0.3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
}

.copy-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

/* Underground Section Styles */
.underground {
    background: linear-gradient(180deg, #2a1a5a 0%, #1a1a4a 30%, #2a1a5a 70%, #3a2a6a 100%);
    position: relative;
}

.underground::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, 
        rgba(42, 26, 90, 1) 0%,
        rgba(36, 21, 85, 0.8) 20%,
        rgba(26, 26, 74, 0.6) 40%,
        rgba(16, 16, 60, 0.4) 60%,
        rgba(10, 10, 46, 0.2) 80%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

.underground::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(26, 26, 74, 0.2) 20%,
        rgba(42, 26, 90, 0.4) 40%,
        rgba(58, 42, 106, 0.6) 60%,
        rgba(80, 20, 20, 0.8) 80%,
        rgba(100, 20, 20, 1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.underground-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.underground-title {
    text-align: center;
    z-index: 3;
}

.cave-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.9),
        0 0 20px rgba(255, 0, 255, 0.7),
        0 0 30px rgba(255, 0, 255, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: caveGlow 3s ease-in-out infinite alternate;
}

.cave-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #ff69b4;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
    animation: subtitlePulse 2s ease-in-out infinite;
}

/* Going Down Image */
.going-down-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.going-down-image {
    width: clamp(80px, 15vw, 150px);
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.4));
    animation: bounceDown 2s ease-in-out infinite,
               glowPulse 3s ease-in-out infinite alternate;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(15px);
    }
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(255, 0, 255, 0.7));
    }
}

/* Runner Coming Out Image */
.runner-container {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.runner-image {
    width: clamp(150px, 20vw, 300px);
    height: auto;
    transform: scaleY(-1);
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.6));
    animation: emergingUp 2.5s ease-in-out infinite,
               fireGlow 3s ease-in-out infinite alternate;
    display: block;
    max-width: 100%;
    opacity: 1;
}

@keyframes emergingUp {
    0%, 100% {
        transform: scaleY(-1) translateY(0px);
    }
    50% {
        transform: scaleY(-1) translateY(-10px);
    }
}

@keyframes fireGlow {
    0% {
        filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(255, 69, 0, 0.7));
    }
}

/* Animation for icons */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes contractGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(0, 255, 255, 0.2),
            inset 0 0 20px rgba(0, 255, 255, 0.05);
    }
    100% {
        box-shadow: 
            0 0 40px rgba(0, 255, 255, 0.3),
            inset 0 0 30px rgba(0, 255, 255, 0.1);
    }
}

@keyframes caveGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 0, 255, 0.9),
            0 0 20px rgba(255, 0, 255, 0.7),
            0 0 30px rgba(255, 0, 255, 0.5),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(255, 0, 255, 1),
            0 0 30px rgba(255, 0, 255, 0.8),
            0 0 45px rgba(255, 0, 255, 0.6),
            2px 2px 6px rgba(0, 0, 0, 0.9);
    }
}

/* Mining Section Styles */
.mining {
    background: linear-gradient(180deg, #641414 0%, #4a1010 30%, #641414 70%, #801818 100%);
    position: relative;
}

.mining .background-image {
    position: relative;
}

.mining .background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80px 60px at 85% 18%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
        radial-gradient(ellipse 60px 40px at 15% 75%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
        radial-gradient(ellipse 40px 30px at 75% 85%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
        radial-gradient(ellipse 50px 35px at 25% 25%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
        radial-gradient(ellipse 45px 32px at 90% 60%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.mining::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, 
        rgba(100, 20, 20, 1) 0%,
        rgba(80, 20, 20, 0.8) 20%,
        rgba(58, 42, 106, 0.6) 40%,
        rgba(42, 26, 90, 0.4) 60%,
        rgba(26, 26, 74, 0.2) 80%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

.mining::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(128, 24, 24, 1) 0%,
        rgba(100, 20, 20, 0.9) 20%,
        rgba(80, 20, 20, 0.6) 50%,
        rgba(60, 15, 15, 0.3) 80%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.mining-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mining-title {
    text-align: center;
    z-index: 3;
}

.mine-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 69, 0, 0.9),
        0 0 20px rgba(255, 69, 0, 0.7),
        0 0 30px rgba(255, 69, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: mineGlow 3s ease-in-out infinite alternate;
}

.mine-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #ff6347;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-shadow: 0 0 10px rgba(255, 99, 71, 0.5);
    animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes mineGlow {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 69, 0, 0.9),
            0 0 20px rgba(255, 69, 0, 0.7),
            0 0 30px rgba(255, 69, 0, 0.5),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(255, 69, 0, 1),
            0 0 30px rgba(255, 69, 0, 0.8),
            0 0 45px rgba(255, 69, 0, 0.6),
            2px 2px 6px rgba(0, 0, 0, 0.9);
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .section {
        min-height: 100vh;
        height: auto;
    }
    
    .title-section {
        top: 8%;
        padding: 0 1rem;
    }
    
    .main-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        font-size: clamp(0.8rem, 2.5vw, 1.2rem);
        letter-spacing: 0.2em;
    }
    
    .mascot-container {
        bottom: 15%;
    }
    
    .floating-mascot {
        width: clamp(120px, 25vw, 200px);
    }
    
    .social-icons {
        top: 2%;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contract-section {
        top: 25%;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 1rem;
        width: calc(100% - 2rem);
        max-width: 300px;
    }
    
    .contract-box {
        padding: 0.6rem;
        width: 100%;
    }
    
    .contract-label {
        font-size: 0.7rem;
    }
    
    .contract-address {
        font-size: 0.5rem;
        line-height: 1.2;
    }
    
    .copy-btn {
        min-width: 25px;
        height: 25px;
        padding: 0.2rem;
    }
    
    .copy-btn svg {
        width: 12px;
        height: 12px;
    }
    
    /* Underground section mobile */
    .underground-content {
        padding: 0 1rem;
    }
    
    .going-down-image {
        width: clamp(60px, 18vw, 120px);
    }
    
    .runner-image {
        width: clamp(120px, 25vw, 200px);
    }
    
    .cave-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }
    
    .cave-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 1.2rem);
        letter-spacing: 0.2em;
    }
    
    /* Mining section mobile */
    .mining-content {
        padding: 0 1rem;
    }
    
    .mine-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        letter-spacing: 0.1em;
        margin-bottom: 0.5rem;
    }
    
    .mine-subtitle {
        font-size: clamp(0.8rem, 2.5vw, 1.2rem);
        letter-spacing: 0.2em;
    }
    
    /* Mobile crystal overlay adjustments */
    .mining .background-image::after {
        background: 
            radial-gradient(ellipse 60px 45px at 85% 15%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
            radial-gradient(ellipse 45px 30px at 15% 80%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
            radial-gradient(ellipse 30px 22px at 80% 85%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
            radial-gradient(ellipse 35px 25px at 20% 20%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
            radial-gradient(ellipse 32px 24px at 90% 55%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%);
    }
}

/* iPhone and Small Mobile Devices */
@media (max-width: 480px) {
    .title-section {
        top: 5%;
        padding: 0 0.5rem;
    }
    
    .main-title {
        font-size: clamp(2rem, 10vw, 3rem);
        letter-spacing: 0.05em;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: clamp(0.7rem, 3vw, 1rem);
        letter-spacing: 0.1em;
    }
    
    .social-icons {
        top: 1%;
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .contract-section {
        top: 20%;
        padding: 0 0.5rem;
        max-width: 280px;
    }
    
    .contract-box {
        padding: 0.5rem;
    }
    
    .contract-label {
        font-size: 0.6rem;
    }
    
    .contract-address {
        font-size: 0.45rem;
    }
    
    .floating-mascot {
        width: clamp(100px, 30vw, 150px);
    }
    
    .mascot-container {
        bottom: 10%;
    }
    
    .going-down-image {
        width: clamp(50px, 20vw, 100px);
    }
    
    .runner-image {
        width: clamp(100px, 30vw, 150px);
    }
    
    .cave-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
        letter-spacing: 0.05em;
        line-height: 1.1;
    }
    
    .cave-subtitle {
        font-size: clamp(0.7rem, 3vw, 1rem);
        letter-spacing: 0.1em;
    }
    
    .mine-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
        letter-spacing: 0.05em;
        line-height: 1.1;
    }
    
    .mine-subtitle {
        font-size: clamp(0.7rem, 3vw, 1rem);
        letter-spacing: 0.1em;
    }
    
    /* Smaller crystal overlays for iPhone */
    .mining .background-image::after {
        background: 
            radial-gradient(ellipse 45px 35px at 85% 12%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
            radial-gradient(ellipse 35px 25px at 15% 85%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
            radial-gradient(ellipse 25px 18px at 85% 88%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
            radial-gradient(ellipse 28px 20px at 18% 15%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%),
            radial-gradient(ellipse 26px 19px at 92% 50%, rgba(100, 20, 20, 1) 0%, rgba(80, 15, 15, 0.8) 60%, transparent 100%);
    }
}
