/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
}

/* FontAwesome icon styling */
.fas, .fab {
    margin-right: 0.5rem;
}

/* Removed meme styling */

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(34, 199, 169, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 199, 169, 0.03) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Header */
.header {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(34, 199, 169, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 4px 20px rgba(34, 199, 169, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: #22C7A9;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    width: 2rem;
    height: 2rem;
    background-image: url('img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(34, 199, 169, 0.3));
}

.logo:hover::before {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(34, 199, 169, 0.4));
}

.logo-capsule {
    width: 40px;
    height: 24px;
    background: linear-gradient(135deg, #22C7A9, #16A085);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(34, 199, 169, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #22C7A9;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #22C7A9;
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #22C7A9, #1a9d8a);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(34, 199, 169, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(34, 199, 169, 0.4);
    background: linear-gradient(135deg, #1a9d8a, #22C7A9);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

/* Mobile navigation */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    transform: scale(1.1);
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #0F3D35;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
    padding: 4rem 1rem;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
    max-width: none;
}



@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #22C7A9, #FFD66E, #22C7A9);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    animation: fade-in-up 1s ease-out 0.5s both;
    line-height: 1.6;
    max-width: 600px;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fade-in-up 1s ease-out 0.7s both;
}

.btn-secondary {
    background: rgba(34, 199, 169, 0.1);
    color: #22C7A9;
    padding: 1rem 2rem;
    border: 2px solid #22C7A9;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 199, 169, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: #22C7A9;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(34, 199, 169, 0.3);
}

.contract-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(34, 199, 169, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: fade-in-up 1s ease-out 0.9s both;
    transition: all 0.3s ease;
}

.contract-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(34, 199, 169, 0.15);
}

.contract-label {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contract-label i {
    margin-right: 0.5rem;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #ffffff;
    word-break: break-all;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(34, 199, 169, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(34, 199, 169, 0.2);
}

.copy-btn {
    background: #22C7A9;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.copy-btn:hover::before {
    left: 100%;
}

.copy-btn:hover {
    background: #1a9d8a;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(34, 199, 169, 0.4);
}

.hero-image {
    text-align: center;
    animation: float-gentle 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(34, 199, 169, 0.2);
    transition: all 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(34, 199, 169, 0.3);
}

.features {
    padding: 4rem 1rem;
    background: #1a1a1a;
    position: relative;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #22C7A9;
    border-radius: 2px;
}

.section-title i {
    margin-right: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(34, 199, 169, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 199, 169, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(34, 199, 169, 0.2);
    border-color: rgba(34, 199, 169, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22C7A9, #16A085);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(34, 199, 169, 0.3);
    animation: icon-float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-icon i {
    margin-right: 0;
}

.feature-card:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(34, 199, 169, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #22C7A9;
}

.feature-card p {
    color: #cccccc;
    opacity: 0.9;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.feature-card:hover p {
    opacity: 1;
}

/* Tokenomics section */
.tokenomics {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f0fdfa, #e6fffa);
    position: relative;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.tokenomics-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tokenomics-facts {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(34, 199, 169, 0.1);
    box-shadow: 0 8px 25px rgba(34, 199, 169, 0.1);
    transition: all 0.3s ease;
}

.tokenomics-facts:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 199, 169, 0.15);
}

.tokenomics-facts h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #0F3D35;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tokenomics-facts h3::before {
    content: '📊';
    font-size: 1.2rem;
}

.tokenomics-facts ul {
    list-style: none;
}

.tokenomics-facts li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(34, 199, 169, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.tokenomics-facts li:hover {
    background: rgba(34, 199, 169, 0.05);
    padding-left: 0.5rem;
    border-radius: 8px;
}

.tokenomics-facts li:last-child {
    border-bottom: none;
}

.tokenomics-facts .label {
    font-weight: 500;
    color: #0F3D35;
}

.tokenomics-facts .value {
    font-weight: 600;
    color: #22C7A9;
    background: rgba(34, 199, 169, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.allocation-card {
    background: linear-gradient(135deg, #22C7A9, #16A085);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(34, 199, 169, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.allocation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.allocation-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(34, 199, 169, 0.4);
}

.allocation-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.allocation-card h3::before {
    content: '🎯';
    margin-right: 0.5rem;
}

.allocation-card p {
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* How to buy section */
.how-to-buy {
    padding: 4rem 1rem;
    background: #0a0a0a;
    position: relative;
}

.how-to-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 214, 110, 0.05), rgba(34, 199, 169, 0.05));
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}

.how-to-buy-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 40px;
}

.step-card {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(34, 199, 169, 0.2);
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    overflow: visible;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 199, 169, 0.05), transparent);
    transition: left 0.6s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(34, 199, 169, 0.2);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22C7A9, #16A085);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(34, 199, 169, 0.4);
    animation: step-pulse 2s ease-in-out infinite;
    z-index: 10;
    border: 3px solid #1a1a1a;
    transition: all 0.3s ease;
}

.step-number i {
    margin-right: 0;
}

@keyframes step-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.step-card:hover h3 {
    color: #22C7A9;
}

.step-card p {
    color: #cccccc;
    opacity: 0.9;
    line-height: 1.5;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
    margin: 0;
}

.step-card:hover p {
    opacity: 1;
}

/* Roadmap section */
.roadmap {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f0fdfa, #e6fffa);
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    font-size: 2.5rem;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.roadmap-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.roadmap-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(34, 199, 169, 0.1);
    position: relative;
    box-shadow: 0 8px 25px rgba(34, 199, 169, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 199, 169, 0.05), transparent);
    transition: left 0.6s ease;
}

.roadmap-card:hover::before {
    left: 100%;
}

.roadmap-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(34, 199, 169, 0.2);
}

.roadmap-phase {
    background: linear-gradient(135deg, #22C7A9, #16A085);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(34, 199, 169, 0.3);
    animation: phase-glow 3s ease-in-out infinite;
}

@keyframes phase-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(34, 199, 169, 0.3); }
    50% { box-shadow: 0 6px 20px rgba(34, 199, 169, 0.5); }
}

.roadmap-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0F3D35;
    transition: color 0.3s ease;
}

.roadmap-card:hover h3 {
    color: #22C7A9;
}

.roadmap-card ul {
    list-style: none;
}

.roadmap-card li {
    padding: 0.5rem 0;
    color: #0F3D35;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.roadmap-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22C7A9;
    font-weight: bold;
    transition: all 0.3s ease;
}

.roadmap-card li:hover::before {
    content: '✓';
    transform: scale(1.2);
}

.roadmap-card li:hover {
    opacity: 1;
    padding-left: 2rem;
}

/* Chart section */
.chart {
    padding: 4rem 1rem;
    background: #1a1a1a;
    position: relative;
}

.chart-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.chart-container {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
    border-radius: 16px;
    border: 1px solid rgba(34, 199, 169, 0.2);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-top: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.chart-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 199, 169, 0.15);
}

.chart-iframe {
    width: 100%;
    height: 500px;
    border: none;
    transition: all 0.3s ease;
}

.chart-iframe:hover {
    transform: scale(1.01);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 3rem 1rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(34, 199, 169, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(34, 199, 169, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 214, 110, 0.1) 0%, transparent 50%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-brand::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    width: 2rem;
    height: 2rem;
    background-image: url('img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(34, 199, 169, 0.3));
}

.footer-brand:hover::before {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(34, 199, 169, 0.4));
}

.footer-brand .logo-capsule {
    width: 40px;
    height: 24px;
    background: linear-gradient(135deg, #22C7A9, #16A085);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(34, 199, 169, 0.3);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(34, 199, 169, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22C7A9;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 199, 169, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: #22C7A9;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 199, 169, 0.4);
}

.social-link i {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: #FFD66E;
}

/* Professional Loading States */
.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    right: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Visual Hierarchy */
.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22C7A9, transparent);
    border-radius: 2px;
}

/* Professional Card Hover Effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(34, 199, 169, 0.4);
}

.step-card:hover .step-number {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 199, 169, 0.5);
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(34, 199, 169, 0.1);
        border-radius: 0 0 16px 16px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}


/* Animation for copy success */
.copy-success {
    background: linear-gradient(135deg, #22C7A9, #16A085) !important;
    color: white !important;
    transform: scale(1.05) !important;
}

/* Verify banner */
.verify-banner {
    background: linear-gradient(135deg, #FFD66E, #FFC107);
    color: #0F3D35;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 214, 110, 0.3);
    animation: banner-pulse 2s ease-in-out infinite;
}

@keyframes banner-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Loading animations */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card,
.tokenomics-facts,
.allocation-card,
.step-card,
.roadmap-card {
    animation: fade-in 0.6s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }

.roadmap-card:nth-child(1) { animation-delay: 0.1s; }
.roadmap-card:nth-child(2) { animation-delay: 0.2s; }
.roadmap-card:nth-child(3) { animation-delay: 0.3s; }
