@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 body {
     font-family: 'Press Start 2P', monospace;
     background: #000;
     overflow: hidden;
     cursor: none;
     height: 100vh;
     position: relative;
     image-rendering: pixelated;
     image-rendering: -moz-crisp-edges;
     image-rendering: crisp-edges;
 }

 /* Краб-курсор */
 .crab-cursor {
     position: fixed;
     top: 0;
     left: 0;
     pointer-events: none;
     z-index: 9999;
     font-size: 20px;
     transform: translate(-50%, -50%);
     animation: crabWalk 1s infinite alternate;
     image-rendering: pixelated;
     filter: drop-shadow(0 0 5px #00BFFF);
 }

 @keyframes crabWalk {
     0% { transform: translate(-50%, -50%) rotate(-3deg); }
     100% { transform: translate(-50%, -50%) rotate(3deg); }
 }

 .ocean-background {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: #000;
    animation: oceanWave 8s ease-in-out infinite;
    image-rendering: pixelated;


}

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

/* Фон SpongeBob */
.spongebob-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 50%, rgba(255, 99, 71, 0.2) 100%),
        /*url('https://i.pinimg.com/736x/0a/ff/13/0aff136c2c9469d1db1049fff501a7be.jpg');*/
    background-size: cover;
    background-position: center;
    opacity: 0.95;
    image-rendering: pixelated;
}

/* Дополнительные элементы SpongeBob */
.spongebob-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.jellyfish {
    position: absolute;
    font-size: 2rem;
    animation: jellyfishFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.jellyfish-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.jellyfish-2 {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.starfish {
    position: absolute;
    font-size: 1.5rem;
    animation: starfishSpin 8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.starfish-1 {
    top: 12%;
    left: 10%;
    animation-delay: 1s;
}

.starfish-2 {
    top: 12%;
    right: 10%;
    animation-delay: 2s;
}

.starfish-3 {
    top: 20%;
    left: 45%;   /* почти по центру */
    animation-delay: 3s;
}

.starfish-4 {
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

.starfish-5 {
    bottom: 35%;
    right: 25%;
    animation-delay: 5s;
}

.starfish-6 {
    bottom: 10%;
    left: 40%;
    animation-delay: 6s;
}
.starfish-7 {
    bottom: 10%;
    left: 10%;
    animation-delay: 0s;
}
.starfish-8 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}
.starfish-9 {
    bottom: 15%;
    left: 60%;
    animation-delay: 4s;
}
.starfish-10 {
    bottom: 25%;
    left: 80%;
    animation-delay: 6s;
}


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

.starfish {
    position: absolute;
    font-size: 1.5rem;
    animation: floatAround 12s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(20px, -10px) rotate(15deg) scale(1.05); }
    50% { transform: translate(40px, 5px) rotate(-10deg) scale(1.1); }
    75% { transform: translate(20px, -5px) rotate(5deg) scale(1.05); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

/* Позиции на экране */
.starfish-1 { top: 12%; left: 10%; animation-delay: 0s; }
.starfish-2 { top: 12%; right: 10%; animation-delay: 2s; }
.starfish-3 { top: 20%; left: 45%; animation-delay: 1s; }
.starfish-4 { top: 50%; left: 20%; animation-delay: 1s; }
.starfish-5 { bottom: 35%; right: 25%; animation-delay: 3s; }
.starfish-6 { bottom: 10%; left: 40%; animation-delay: 2s; }
.starfish-7 { bottom: 10%; left: 10%; animation-delay: 1s; }
.starfish-8 { bottom: 20%; left: 30%; animation-delay: 2s; }
.starfish-9 { bottom: 15%; left: 60%; animation-delay: 1s; }
.starfish-10 { bottom: 25%; left: 80%; animation-delay: 1s; }




 /* Синие элементы */
 .blue-elements {
     position: absolute;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 6;
 }

 .blue-sparkle {
     position: absolute;
     font-size: 1.5rem;
     animation: sparkleFloat 8s ease-in-out infinite;
     filter: drop-shadow(0 0 8px #00BFFF);
     color: #00BFFF;
 }

 .sparkle-1 {
     top: 15%;
     left: 20%;
     animation-delay: 0s;
 }

 .sparkle-2 {
     top: 45%;
     right: 25%;
     animation-delay: 3s;
 }

 .sparkle-3 {
     bottom: 25%;
     left: 35%;
     animation-delay: 6s;
 }

 .blue-orb {
     position: absolute;
     width: 30px;
     height: 30px;
     background: radial-gradient(circle, #00BFFF, #0066CC);
     border-radius: 50%;
     animation: orbFloat 10s ease-in-out infinite;
     box-shadow: 0 0 15px #00BFFF;
 }

 .orb-1 {
     top: 25%;
     right: 15%;
     animation-delay: 0s;
 }

 .orb-2 {
     top: 60%;
     left: 10%;
     animation-delay: 4s;
 }

 .orb-3 {
     bottom: 40%;
     right: 30%;
     animation-delay: 7s;
 }

 @keyframes sparkleFloat {
     0%, 100% { 
         transform: translateY(0px) rotate(0deg); 
         opacity: 0.6;
     }
     50% { 
         transform: translateY(-15px) rotate(180deg); 
         opacity: 1;
     }
 }

 @keyframes orbFloat {
     0%, 100% { 
         transform: translateY(0px) scale(1); 
         opacity: 0.7;
     }
     50% { 
         transform: translateY(-20px) scale(1.2); 
         opacity: 1;
     }
 }

 /* Водоросли */
.seaweed {
    position: absolute;
    bottom: 0;
    width: 16px;
    height: 160px;
    background: repeating-linear-gradient(
        to top,
        #228B22 0px,
        #228B22 8px,
        #32CD32 8px,
        #32CD32 16px
    );
    border-radius: 8px;
    animation: seaweedSway 4s ease-in-out infinite;
    image-rendering: pixelated;
}

.seaweed-1 {
    left: 5%;
    height: 120px;
    animation-delay: 0s;
}

.seaweed-2 {
    left: 15%;
    height: 140px;
    animation-delay: 1s;
}

.seaweed-3 {
    left: 25%;
    height: 100px;
    animation-delay: 2s;
}

.seaweed-4 {
    left: 35%;
    height: 130px;
    animation-delay: 1.5s;
}

.seaweed-5 {
    left: 45%;
    height: 110px;
    animation-delay: 2.5s;
}

.seaweed-6 {
    left: 55%;
    height: 150px;
    animation-delay: 0.5s;
}

.seaweed-7 {
    left: 65%;
    height: 120px;
    animation-delay: 1.2s;
}

.seaweed-8 {
    left: 75%;
    height: 140px;
    animation-delay: 2.2s;
}

.seaweed-9 {
    left: 85%;
    height: 100px;
    animation-delay: 0.8s;
}

.seaweed-10 {
    left: 95%;
    height: 130px;
    animation-delay: 1.8s;
}


@keyframes seaweedSway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* Основной контент */
.main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.blue-lobster-title {
    font-size: 6rem;
    font-weight: bold;
    color: #00BFFF;
    text-shadow: 
        0 0 2px #0099CC,
        0 0 4px #0099CC,
        0 0 6px #005C99,
        0 0 8px #004080,
        1px 1px 0px #000,
        -1px -1px 0px #000,
        1px -1px 0px #000,
        -1px 1px 0px #000;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Press Start 2P', monospace;
    image-rendering: pixelated;
    display: flex;
    justify-content: center;

    /* анимация свечения */
    animation: glowPulse 1.5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        text-shadow: 
            0 0 1px #0099CC,
            0 0 3px #0099CC,
            0 0 5px #005C99,
            0 0 7px #004080,
            1px 1px 0px #000,
            -1px -1px 0px #000,
            1px -1px 0px #000,
            -1px 1px 0px #000;
    }
    100% {
        text-shadow: 
            0 0 3px #00BFFF,
            0 0 6px #00BFFF,
            0 0 9px #0066CC,
            0 0 12px #004C99,
            1px 1px 0px #000,
            -1px -1px 0px #000,
            1px -1px 0px #000,
            -1px 1px 0px #000;
    }
}
.space {
  display: inline-block;
  width: 0.5em; /* регулируешь ширину пробела */
}

.blue-lobster-title span {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

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

/* задержка для каждой буквы */
.blue-lobster-title span:nth-child(1) { animation-delay: 0s; }
.blue-lobster-title span:nth-child(2) { animation-delay: 0.1s; }
.blue-lobster-title span:nth-child(3) { animation-delay: 0.2s; }
.blue-lobster-title span:nth-child(4) { animation-delay: 0.3s; }
.blue-lobster-title span:nth-child(5) { animation-delay: 0.4s; }
.blue-lobster-title span:nth-child(6) { animation-delay: 0.5s; }
.blue-lobster-title span:nth-child(7) { animation-delay: 0.6s; }
.blue-lobster-title span:nth-child(8) { animation-delay: 0.7s; }
.blue-lobster-title span:nth-child(9) { animation-delay: 0.8s; }
.blue-lobster-title span:nth-child(10) { animation-delay: 0.9s; }
.blue-lobster-title span:nth-child(11) { animation-delay: 1s; }
.blue-lobster-title span:nth-child(12) { animation-delay: 1.1s; }
.blue-lobster-title span:nth-child(13) { animation-delay: 1.2s; }

.blue-lobster-title:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 6px #00BFFF,
        0 0 12px #00BFFF,
        0 0 18px #0066CC,
        2px 2px 4px #000,
        -2px -2px 4px #000,
        2px -2px 4px #000,
        -2px 2px 4px #000;
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 8px #00BFFF,
            0 0 16px #00BFFF,
            0 0 24px #0066CC,
            0 0 32px #0066CC,
            2px 2px 0px #000,
            -2px -2px 0px #000,
            2px -2px 0px #000,
            -2px 2px 0px #000;
    }
    100% {
        text-shadow: 
            0 0 12px #00BFFF,
            0 0 24px #00BFFF,
            0 0 36px #0066CC,
             3px 3px 6px #000, 
            0 0 48px #0066CC,
            3px 3px 0px #000,
            -3px -3px 0px #000,
            3px -3px 0px #000,
            -3px 3px 0px #000;
    }
}

/* Модальное окно с лобстером */
.lobster-modal {
    display: none; /* скрыто по умолчанию */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95); /* тёмный фон */
    justify-content: center;
    align-items: center;
}

.lobster-modal .modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lobster-modal .lobster-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* картинка полностью влезает */
}

.lobster-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    
    transition: 0.3s;
    z-index: 10000;
}

.lobster-modal .close-btn:hover {
    color: red;
}
/*.animated-lobster {
    position: relative;
    width: 300px;
    height: 200px;
    animation: lobsterFloat 4s ease-in-out infinite;
}

.lobster-body {
    width: 180px;
    height: 120px;
    background: linear-gradient(45deg, #0066CC, #00BFFF, #0066CC);
    border-radius: 60px;
    position: absolute;
    top: 40px;
    left: 60px;
    box-shadow: 
        0 0 20px #00BFFF,
        inset 0 0 20px rgba(0, 191, 255, 0.3);
    animation: bodyGlow 3s ease-in-out infinite alternate;
}

.lobster-claw {
    width: 60px;
    height: 80px;
    background: linear-gradient(45deg, #0066CC, #00BFFF);
    border-radius: 30px;
    position: absolute;
    top: 30px;
    box-shadow: 0 0 15px #00BFFF;
}

.left-claw {
    left: 20px;
    transform: rotate(-30deg);
    animation: leftClawMove 2s ease-in-out infinite;
}

.right-claw {
    right: 20px;
    transform: rotate(30deg);
    animation: rightClawMove 2s ease-in-out infinite;
}

.lobster-tail {
    width: 80px;
    height: 60px;
    background: linear-gradient(45deg, #0066CC, #00BFFF);
    border-radius: 40px;
    position: absolute;
    top: 70px;
    right: 0;
    animation: tailWag 1.5s ease-in-out infinite;
}

.lobster-eyes {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.eye {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 0 10px #00BFFF;
    animation: eyeBlink 3s ease-in-out infinite;
}

.lobster-antennae {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
}

.antenna {
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, #0066CC, #00BFFF);
    border-radius: 2px;
    animation: antennaWave 2s ease-in-out infinite;
}

.left-antenna {
    animation-delay: 0s;
}

.right-antenna {
    animation-delay: 1s;
}*/

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

@keyframes bodyGlow {
    0% { box-shadow: 0 0 20px #00BFFF, inset 0 0 20px rgba(0, 191, 255, 0.3); }
    100% { box-shadow: 0 0 30px #00BFFF, inset 0 0 30px rgba(0, 191, 255, 0.5); }
}

@keyframes leftClawMove {
    0%, 100% { transform: rotate(-30deg); }
    50% { transform: rotate(-60deg); }
}

@keyframes rightClawMove {
    0%, 100% { transform: rotate(30deg); }
    50% { transform: rotate(60deg); }
}

@keyframes tailWag {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-10deg); }
}

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes antennaWave {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

.blue-lobster-img {
    max-width: 100%;
    height: auto;
    border: 4px solid #00BFFF;
    border-radius: 0;
    box-shadow: 
        0 0 20px #00BFFF,
        0 0 40px rgba(0, 191, 255, 0.5),
        inset 0 0 20px rgba(0, 191, 255, 0.3);
    image-rendering: pixelated;
    filter: contrast(1.3) saturate(1.4) brightness(1.1);
    transition: all 0.3s ease;
    animation: lobsterGlow 4s ease-in-out infinite alternate;
}

@keyframes lobsterGlow {
    0% {
        box-shadow: 
            0 0 20px #00BFFF,
            0 0 40px rgba(0, 191, 255, 0.5),
            inset 0 0 20px rgba(0, 191, 255, 0.3);
        filter: contrast(1.3) saturate(1.4) brightness(1.1);
    }
    100% {
        box-shadow: 
            0 0 30px #00BFFF,
            0 0 60px rgba(0, 191, 255, 0.7),
            inset 0 0 30px rgba(0, 191, 255, 0.5);
        filter: contrast(1.4) saturate(1.5) brightness(1.2);
    }
}

.modal-content h2 {
    color: #00BFFF;
    text-align: center;
    margin: 20px 0;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #00BFFF, 2px 2px 0px #000;
    font-family: 'Press Start 2P', monospace;
}

.modal-content p {
    color: #FFFFFF;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: 'Press Start 2P', monospace;
}

/* Пиксельный эффект для всего сайта */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 191, 255, 0.05) 2px,
            rgba(0, 191, 255, 0.05) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 191, 255, 0.05) 2px,
            rgba(0, 191, 255, 0.05) 4px
        );
    pointer-events: none;
    z-index: 1;
    image-rendering: pixelated;
}

/* Адаптивность */
@media (max-width: 768px) {
    .blue-lobster-title {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    .blue-lobster-img {
        max-width: 90%;
    }
}





.bubbles {
    position: absolute;
    bottom: 0;
    width: 60px;   /* увеличили зону появления */
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.bubbles-1 { left: 5%; }
.bubbles-2 { left: 25%; }
.bubbles-3 { left: 45%; }
.bubbles-4 { left: 65%; }
.bubbles-5 { left: 85%; }

.bubble {
    position: absolute;
    bottom: 0;
    width: 15px;   /* увеличенный размер */
    height: 15px;
    background: rgba(173, 216, 230, 0.7);
    border-radius: 50%;
    animation: rise 5s infinite ease-in;
}

/* Разные размеры и задержки для реалистичности */
.bubbles .bubble:nth-child(1) { left: 5px; animation-delay: 0s; width: 12px; height: 12px; }
.bubbles .bubble:nth-child(2) { left: 20px; animation-delay: 1s; width: 15px; height: 15px; }
.bubbles .bubble:nth-child(3) { left: 35px; animation-delay: 2s; width: 18px; height: 18px; }

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-50%) scale(1.2); opacity: 0.8; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/*.twitter-logo {
  position: fixed;
  top: 300px;
  right: 900px;
  z-index: 2147483647;         
  pointer-events: auto;         
}

.twitter-logo img {
  width: 70px;
  height: 70px;
   background: linear-gradient(
    135deg,
    rgba(255,255,255,0.95) 0%,
    rgba(191,239,255,0.92) 35%,
    rgba(0,191,255,0.88) 70%,
    rgba(0,102,204,0.88) 100%
  );  
  border-radius: 9999px;
  padding: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  display: block;
  mix-blend-mode: normal;      
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.twitter-logo img:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}
*/

.main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

/* логотип над надписью */
.twitter-logo {
    display: inline-block;
    margin-bottom: 60px;
    cursor: none;
    animation: bubbleFloat 3s ease-in-out infinite;
}

.twitter-logo img {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, white, #00BFFF);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.twitter-logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}


@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(-3deg) scale(1.05);
    }
    50% {
        transform: translateY(-15px) rotate(3deg) scale(1.1);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg) scale(1.05);
    }
}


.copy-container {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
}

#copyBtn {
  margin-left: 10px;
  padding: 6px 12px;
  font-size: 0.8rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #00BFFF, #0066CC);
  color: #fff;
  cursor: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

#copyBtn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #0099FF, #004C99);
}
/* область прокрутки внутри модалки */
.modal-body {
  height: 100vh;                /* на полную высоту окна */
  overflow-y: auto;             /* вертикальный скролл */
  -webkit-overflow-scrolling: touch;
  padding: 4vh 4vw;             /* зазор сверху и снизу */
  box-sizing: border-box;       /* чтобы паддинги не съедались */
}

/* фото — во всю ширину модального контейнера */
.modal-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto 4vh;           /* отступ между фото */
  border: 4px solid #00BFFF;
  box-shadow: 0 0 20px #00BFFF, 0 0 40px rgba(0,191,255,0.35);
}


/* Стилизация скроллбара для webkit-браузеров (Chrome, Edge, Safari) */
.modal-body::-webkit-scrollbar {
  width: 12px; /* толщина полосы */
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.6); /* фон трека */
  border-radius: 6px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #00BFFF; /* сам ползунок */
  border-radius: 6px;
  box-shadow: 0 0 10px #00BFFF, 0 0 20px #00BFFF; /* неон */
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: #0099FF;
  box-shadow: 0 0 15px #00BFFF, 0 0 30px #0099FF; /* ярче при наведении */
}

/* Для Firefox */
.modal-body {
  scrollbar-width: thin;
  scrollbar-color: #00BFFF rgba(0, 0, 0, 0.6);
}


