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

:root {
    --primary-blue: #0066cc;
    --deep-blue: #003d7a;
    --ocean-blue: #0080ff;
    --light-blue: #4da6ff;
    --accent-blue: #00bfff;
    --whale-blue: #1a75ff;
    --water-blue: #0066cc;
    --text-white: #ffffff;
    --text-light: #e0f2ff;
    --card-bg: rgba(255, 255, 255, 0.1);
    --card-border: rgba(255, 255, 255, 0.596);
}

body {
    font-family: "Share Tech", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Water Background */
.water-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, 
        #001a33 0%, 
        #003366 25%, 
        #004d99 50%, 
        #0066cc 75%, 
        #0080ff 100%);
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.water-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(77, 166, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 128, 255, 0.1) 0%, transparent 50%);
    animation: waterFlow 20s ease-in-out infinite;
}

@keyframes waterFlow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.mascot-container {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

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

.mascot-logo {
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 191, 255, 0.5));
    transition: transform 0.3s ease;
}

.mascot-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.main-title {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #8fc7ff 50%, #4cd2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.8));
    }
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Cards */
.section-card {
    background-image: url('media/blocks.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px dashed var(--card-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: fadeInUp 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    filter: blur(3px);
    z-index: 0;
}

.section-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-bg);
    z-index: 0;
}

.section-card > * {
    position: relative;
    z-index: 1;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #4da6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title .emoji {
    -webkit-text-fill-color: initial;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    display: inline-block;
}

/* About Section */
.about-section {
    margin-bottom: 40px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

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

.social-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--accent-blue) 100%);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.social-button i {
    margin-right: 8px;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.5);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--ocean-blue) 100%);
}

/* Contract Section */
.contract-section {
    margin-bottom: 40px;
}

.contract-address-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid var(--card-border);
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-white);
    word-break: break-all;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.copy-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--accent-blue) 100%);
    color: var(--text-white);
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
    white-space: nowrap;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.5);
}

.copy-button:active {
    transform: translateY(0);
}

.copy-icon {
    font-size: 1.1rem;
}

.network-badge {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.network-emoji {
    display: inline-block;
    transform: rotate(45deg);
}

/* Rewards Section */
.rewards-section {
    margin-bottom: 40px;
}

.dexscreener-section {
    margin-bottom: 40px;
}

.dexscreener-embed {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

/* Footer */
.footer {
    width: 100%;
    text-align: center;
    padding: 40px 20px 0;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
}

.footer-banner {
    width: 80%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
}

.rewards-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0.9;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.reward-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--card-border);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.reward-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

.reward-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.5));
}

.reward-card:nth-child(2) .reward-icon {
    transform: rotate(45deg);
}

.reward-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 500;
}

.reward-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    background: linear-gradient(135deg, #ffffff 0%, #4da6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Indicator */
.loading-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-indicator.active {
    opacity: 1;
}

.wave {
    width: 8px;
    height: 40px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--accent-blue) 100%);
    border-radius: 4px;
    animation: waveAnimation 1.2s ease-in-out infinite;
}

.wave:nth-child(2) {
    animation-delay: 0.2s;
}

.wave:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes waveAnimation {
    0%, 100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .section-card {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mascot-logo {
        max-width: 400px;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .contract-address-container {
        flex-direction: column;
    }
    
    .contract-address {
        min-width: 100%;
    }
    
    .footer {
        padding: 0;
    }
    .footer-banner {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .hero-section {
        padding: 40px 15px;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
}
