* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(135deg, 
        #001f3f 0%,
        #003d7a 25%,
        #0074d9 50%,
        #39cccc 75%,
        #7fdbff 100%);
    cursor: none;
    font-family: 'Arial', sans-serif;

}

.ocean-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;

}

.bubble {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(135, 206, 250, 0.3) 70%,
        rgba(0, 100, 200, 0.1) 100%);
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(135, 206, 250, 0.2),
        0 0 40px rgba(0, 150, 255, 0.1);
    animation: float 6s infinite ease-in-out;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    border-radius: 50%;
    filter: blur(1px);
}

.bubble::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 25%;
    width: 15%;
    height: 15%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.6) 0%,
        transparent 100%);
    border-radius: 50%;
    filter: blur(0.5px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

.bubble.small {
    width: 20px;
    height: 20px;
    animation-duration: 4s;
}

.bubble.medium {
    width: 40px;
    height: 40px;
    animation-duration: 6s;
}

.bubble.large {
    width: 60px;
    height: 60px;
    animation-duration: 8s;
}

.bubble.extra-large {
    width: 80px;
    height: 80px;
    animation-duration: 10s;
}

.mouse-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(135, 206, 250, 0.6) 50%,
        transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    transition: transform 0.1s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.title {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    font-weight: 200;
    text-align: center;
    z-index: 100;
    pointer-events: none;
    letter-spacing: 1px;
}

.subtitle {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 200;
    text-align: center;
    z-index: 100;
    pointer-events: none;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
}

.wave-animation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(0, 150, 255, 0.1) 50%,
        rgba(0, 100, 200, 0.2) 100%);
    animation: wave 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.content-sections {
    position: relative;
    z-index: 200;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 6rem;
}

.hero-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 4rem;
}

.main-title {
    font-size: 6rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(135, 206, 250, 0.3),
        0 0 60px rgba(0, 150, 255, 0.2);
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 40px rgba(135, 206, 250, 0.3),
            0 0 60px rgba(0, 150, 255, 0.2);
    }
    100% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 0.8),
            0 0 60px rgba(135, 206, 250, 0.5),
            0 0 90px rgba(0, 150, 255, 0.3);
    }
}


.main-description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 300;
    letter-spacing: 1px;
}

.story-section {
    background: rgba(0, 50, 100, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.story-section img {
    position: absolute;
    bottom: 0;
    right: -6rem;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(135, 206, 250, 0.2);
    letter-spacing: 3px;
    z-index: 3;
    position: relative;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    width: 65%;
    z-index: 3;
    position: relative;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-title {
        font-size: 4.5rem;
        letter-spacing: 6px;
    }
    
    .main-description {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .story-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .content-sections {
        padding: 1rem;
        gap: 3rem;
    }
    
    .main-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .story-text {
        font-size: 1rem;
        text-align: left;
        width: 100%;
    }
    
    .story-section {
        padding: 1.5rem;
    }
    
    .story-section img {
    display: none;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .main-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .story-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.hero-content img {
    width: 15rem;
}

.hero-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 30px rgba(135, 206, 250, 0.4),
        0 0 60px rgba(0, 150, 255, 0.2);
    animation: imageFloat 4s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.story-content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.story-image {
    width: 250px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(135, 206, 250, 0.2);
    flex-shrink: 0;
}

.story-text-content {
    flex: 1;
    min-width: 300px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(135, 206, 250, 0.3);
}

.social-link svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.tokenomics-section {
    background: rgba(0, 30, 80, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}
.tokenomics-section img {
    position: absolute;
    bottom: 0;
    left: -1rem;
    width: 20rem;
 }

 
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tokenomics-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.tokenomics-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.tokenomics-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.tokenomics-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */


.get-swish-section {
   border-radius: 20px;
  padding: 4rem 2rem;
 
  margin-top: 4rem;
  position: relative;
}

.swish-steps {
  display: flex;
  flex-direction: column;
  gap: 9rem;
  margin-top: 3rem;
  align-items: center;
}

.swish-step {
  position: relative;
  border-radius: 15px;
   backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  background: rgba(0, 50, 100, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.swish-step .step-img {
  width: 20rem;
  object-fit: contain;
  position: absolute;
  z-index: 1;
  bottom: 0;
}

.swish-step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(135, 206, 250, 0.3);
}


.swish-step .step-content {
  z-index: 5;
  text-align: right;
  flex: 1;
  padding: 1rem;
  
}

.swish-step-even {
  flex-direction: row-reverse;
}

.swish-step-even .step-content {
  text-align: left;
}

.step-number {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  background: rgba(135, 206, 250, 0.4);
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
  margin-left: auto;
}
.swish-step-even .step-number {
    margin-left: 0;
 }

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.step-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
}
.step-desc a {
 text-decoration: none;
 color: white;
 font-weight: bold;
}

.swish-footer {
  background: url('./imgs/footer-bg.jpg')   ;
  padding: 0 2rem;
  color: white;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  min-height: 30rem;
  background-size: 100% 100%;
  display: flex;
  align-items: end;

}

.swish-footer .footer-content {
   margin: 0 auto;
  line-height: 1.8;
    display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-width: 1000px;
}
.swish-footer .footer-content h4  {
     font-size: 2.5rem;
      margin-bottom: 7rem;
     font-weight: bolder;
         font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(135, 206, 250, 0.3),
        0 0 60px rgba(0, 150, 255, 0.2);
     animation: titleGlow 3s ease-in-out infinite alternate;

}

.swish-footer .footer-content p  {
     font-size: 1rem;
     margin-top: auto;
     color: black;

}


@media (max-width: 768px) {
    .swish-footer {
        background-image: none;
    }
    .swish-footer .footer-content h4  {
     font-size: 1.2rem;
 
}

    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .main-img {
        display: none;
    }
    .hero-image {
        width: 150px;
        height: 150px;
    }
    .tokenomics-section img {
        display: none;
    }
    .story-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .story-image {
        width: 100%;
        max-width: 300px;
        height: 180px;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .social-link svg {
        width: 24px;
        height: 24px;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tokenomics-item {
        padding: 1.5rem;
    }
    .swish-step .step-img {
 opacity: 0.4;
}
}
