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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, #a3ffe4 0%, #b7ffe9 50%, #37ffb6 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Falling Bubbles Background */
.bubbles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(20, 241, 148, 0.6), rgba(10, 180, 100, 0.8));
    animation: fall linear infinite;
    top: -100px;
    box-shadow: inset 0 0 20px rgba(0, 100, 60, 0.3);
}

.bubble:nth-child(1) { width: 60px; height: 60px; left: 5%; animation-duration: 8s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 40px; height: 40px; left: 15%; animation-duration: 10s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 80px; height: 80px; left: 25%; animation-duration: 12s; animation-delay: 1s; }
.bubble:nth-child(4) { width: 30px; height: 30px; left: 35%; animation-duration: 9s; animation-delay: 3s; }
.bubble:nth-child(5) { width: 50px; height: 50px; left: 45%; animation-duration: 11s; animation-delay: 0.5s; }
.bubble:nth-child(6) { width: 70px; height: 70px; left: 55%; animation-duration: 7s; animation-delay: 4s; }
.bubble:nth-child(7) { width: 25px; height: 25px; left: 65%; animation-duration: 13s; animation-delay: 2.5s; }
.bubble:nth-child(8) { width: 45px; height: 45px; left: 75%; animation-duration: 10s; animation-delay: 1.5s; }
.bubble:nth-child(9) { width: 55px; height: 55px; left: 85%; animation-duration: 9s; animation-delay: 0.8s; }
.bubble:nth-child(10) { width: 35px; height: 35px; left: 95%; animation-duration: 11s; animation-delay: 3.5s; }
.bubble:nth-child(11) { width: 65px; height: 65px; left: 8%; animation-duration: 14s; animation-delay: 1.2s; }
.bubble:nth-child(12) { width: 28px; height: 28px; left: 28%; animation-duration: 8s; animation-delay: 4.5s; }
.bubble:nth-child(13) { width: 75px; height: 75px; left: 48%; animation-duration: 10s; animation-delay: 2.2s; }
.bubble:nth-child(14) { width: 38px; height: 38px; left: 68%; animation-duration: 12s; animation-delay: 0.3s; }
.bubble:nth-child(15) { width: 52px; height: 52px; left: 88%; animation-duration: 9s; animation-delay: 5s; }
.bubble:nth-child(16) { width: 42px; height: 42px; left: 2%; animation-duration: 11s; animation-delay: 3.8s; }

@keyframes fall {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.85;
    }
    90% {
        opacity: 0.85;
    }
    100% {
        transform: translateY(100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Header */
.header {
    text-align: center;
    padding: 40px 20px 20px;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 10px;
}

.logo-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.title {
    font-family: 'Arial', cursive;
    font-size: 5rem;
    color: #14F194;
    text-shadow: 3px 3px 0px #0a7a4a, 6px 6px 10px rgba(0,0,0,0.2);
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.tagline {
    font-family: 'Arial', cursive;
    font-size: 1.5rem;
    color: #0a5a3c;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    padding: 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(20, 241, 148, 0.3);
}

.intro-text {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.6;
}

.main-image {
    width: 100%;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.penguin-image {
    width: 100%;
    height: auto;
    display: block;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #14F194, #0bc978);
    color: white;
    box-shadow: 0 3px 10px rgba(20, 241, 148, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #5cf7b8, #14F194);
    color: white;
    box-shadow: 0 3px 10px rgba(20, 241, 148, 0.4);
}

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

.contract-section {
    margin: 20px 0;
}

.contract-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-box {
    display: flex;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.contract-address {
    flex: 1;
    padding: 12px;
    font-size: 0.9rem;
    color: #333;
    word-break: break-all;
    font-family: monospace;
}

.copy-btn {
    background: #14F194;
    color: white;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: #0bc978;
}

.btn-buy {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #1a3a2f, #0d1f18);
    color: white;
    padding: 18px;
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Meme Gallery */
.meme-gallery {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Arial', cursive;
    font-size: 3.5rem;
    color: #0a5a3c;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    width: 720px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.carousel-btn {
    background: #14F194;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #0bc978;
    transform: scale(1.1);
}

.gallery-item {
    width: 220px;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* What's The Point Section */
.whats-the-point {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.point-card {
    background: linear-gradient(135deg, #aa76ff, #904efa);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(20, 241, 148, 0.3);
}

.section-title-dark {
    font-family: 'Arial', cursive;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.point-subtitle {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: italic;
}

.point-text {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.6;
}

/* Core Values */
.core-values {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    
}

.values-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: -20px;
    margin-bottom: 30px;
}

.values-list {
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    text-align: left;
    border: 2px solid #904efa;
}

.value-title {
    font-family: 'Arial', cursive;
    font-size: 1.3rem;
    color: #0a5a3c;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.value-desc {
    font-size: 1.05rem;
    color: #666;
    font-style: italic;
}

/* On Chasing Bubbles */
.chasing-bubbles {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.bubbles-card {
    background: linear-gradient(135deg, #9f63ff, #904efa);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(20, 241, 148, 0.3);
}

.bubbles-text {
    font-size: 1.2rem;
    color: #0a3a2a;
    margin-bottom: 15px;
    font-weight: bold;
}

.bubbles-subtext {
    font-size: 1.05rem;
    color: #ffffff;
    margin-top: 15px;
}

.concept-list {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 2;
    font-weight: bold;
}

/* Quick Info */
.quick-info {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.info-card {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 25px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 2px solid #14F194;
}

.info-label {
    font-weight: bold;
    color: #0a5a3c;
    font-size: 1.1rem;
}

.info-value {
    color: #555;
    font-size: 1.05rem;
}

/* Final Words */
.final-words {
    padding: 30px 20px 50px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.final-card {
    background: linear-gradient(135deg, #9f63ff, #904efa);    border-radius: 20px;
    padding: 40px 30px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(20, 241, 148, 0.4);
    border: #000000 2px solid;
}

.final-title {
    font-family: 'Arial', cursive;
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.final-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.6;
}

.final-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.final-highlight {
    font-size: 1.15rem;
    color: #b8ffd9;
    margin-bottom: 25px;
    line-height: 1.8;
    font-weight: bold;
}

.btn-final {
    background: linear-gradient(135deg, #14F194, #5cf7b8);
    color: #0a3a2a;
    padding: 18px 45px;
    font-size: 1.3rem;
    display: inline-block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3a2f, #0d1f18);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: auto;
}

.footer-brand {
    font-family: 'Arial', cursive;
    font-size: 1.8rem;
    color: #14F194;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: #5cf7b8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 18px;
    background: rgba(20, 241, 148, 0.2);
    border-radius: 5px;
    transition: all 0.3s;
}

.footer-link:hover {
    background: rgba(20, 241, 148, 0.4);
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
    .title {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-card {
        padding: 20px;
    }

    .gallery-item {
        width: 150px;
        height: 150px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 200px;
    }

    .btn-buy {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}
