/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    min-height: 100vh;
    background: #f5f5f0;
    overflow-x: hidden;
}

/* ========================================
   CONTRACT ADDRESS (CA)
   ======================================== */
.ca-container {
    margin: 20px 0 30px;
    position: relative;
}

.ca-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(26, 26, 46, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ca-label i {
    color: #7ddf4a;
}

.ca-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 46, 0.08);
    border-radius: 12px;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    gap: 12px;
    position: relative;
    max-width: 520px;
}

.ca-box:hover {
    border-color: #7ddf4a;
    box-shadow: 0 4px 20px rgba(125, 223, 74, 0.15);
    transform: translateY(-2px);
}

.ca-box:active {
    transform: scale(0.98);
}

.ca-address {
    font-family: 'Inter', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: 0.3px;
    word-break: break-all;
    flex: 1;
    min-width: 0;
    user-select: all;
}

.ca-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #7ddf4a, #b3ff7b);
    color: #1a1a2e;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.ca-copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(125, 223, 74, 0.3);
}

.ca-copy-btn i {
    font-size: 0.85rem;
}

.ca-copy-text {
    font-size: 0.75rem;
}

.ca-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1a1a2e;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.ca-tooltip.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE CA ===== */
@media (max-width: 768px) {
    .ca-box {
        padding: 10px 14px;
        max-width: 100%;
    }
    
    .ca-address {
        font-size: 0.75rem;
    }
    
    .ca-copy-btn {
        padding: 5px 12px;
        font-size: 0.65rem;
    }
    
    .ca-copy-btn i {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .ca-box {
        flex-wrap: wrap;
        padding: 10px 12px;
    }
    
    .ca-address {
        font-size: 0.65rem;
        width: 100%;
        text-align: center;
        padding-bottom: 6px;
        border-bottom: 1px dashed rgba(26, 26, 46, 0.06);
    }
    
    .ca-copy-btn {
        width: 100%;
        justify-content: center;
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    
    .ca-tooltip {
        font-size: 0.7rem;
        padding: 4px 12px;
        bottom: -30px;
    }
}

/* ===== BACKGROUND ===== */
.bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(125, 223, 74, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(179, 255, 123, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(125, 223, 74, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #f5f5f0 0%, #fafaf5 30%, #f5f5f0 60%, #f0f0eb 100%);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(125, 223, 74, 0.03) 80px, rgba(125, 223, 74, 0.03) 81px),
        repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(179, 255, 123, 0.02) 80px, rgba(179, 255, 123, 0.02) 81px);
    pointer-events: none;
}

/* ===== CONTAINER ===== */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    background: transparent;
    width: 100%;
    gap: 10px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #1a1a2e;
    white-space: nowrap;
}

/* ===== DESKTOP NAV ===== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(26, 26, 46, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7ddf4a, #b3ff7b);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a2e;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .mobile-buy-btn {
    display: none;
}

.btn-buy-nav {
    background: linear-gradient(135deg, #7ddf4a, #b3ff7b);
    color: #1a1a2e;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(125, 223, 74, 0.25);
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-buy-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(125, 223, 74, 0.35);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1a1a2e;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   MOBILE NAV
   ======================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .btn-buy-nav {
        display: none;
    }
    
    .nav-logo .logo-text {
        font-size: 0.9rem;
    }
    
    .nav-links {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 40px 20px;
        z-index: 999;
        animation: slideDown 0.3s ease;
        margin: 0;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links a {
        font-size: 1.8rem;
        color: #1a1a2e;
        padding: 10px 0;
        font-weight: 700;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover {
        color: #7ddf4a;
        transform: scale(1.05);
    }
    
    .nav-links .mobile-buy-btn {
        display: block;
        background: linear-gradient(135deg, #7ddf4a, #b3ff7b);
        color: #1a1a2e;
        border: none;
        padding: 16px 48px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.2rem;
        cursor: pointer;
        margin-top: 15px;
        box-shadow: 0 4px 30px rgba(125, 223, 74, 0.3);
        transition: all 0.3s ease;
    }
    
    .nav-links .mobile-buy-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 40px rgba(125, 223, 74, 0.4);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-logo .logo-text {
        font-size: 0.75rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .hamburger span {
        width: 24px;
        height: 2.5px;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .nav-links .mobile-buy-btn {
        padding: 14px 36px;
        font-size: 1rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 0 50px;
    gap: 50px;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title .highlight {
    display: block;
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.05;
    color: #1a1a2e;
}

.hero-title .sub-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 6px;
    letter-spacing: 2px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(26, 26, 46, 0.6);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 38px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, #7ddf4a, #b3ff7b);
    color: #1a1a2e;
    box-shadow: 0 4px 30px rgba(125, 223, 74, 0.25);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(125, 223, 74, 0.35);
}

.btn-secondary {
    background: rgba(26, 26, 46, 0.05);
    color: #1a1a2e;
    border: 1px solid rgba(26, 26, 46, 0.1);
}

.btn-secondary:hover {
    background: rgba(26, 26, 46, 0.1);
    transform: scale(1.05);
}

/* ===== HERO IMAGE ===== */
.hero-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cat-illustration {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat-circle {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 350px;
    background: radial-gradient(ellipse at center, rgba(125, 223, 74, 0.08), transparent 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatCat 4s ease-in-out infinite;
    overflow: hidden;
    border: 3px solid rgba(125, 223, 74, 0.15);
    box-shadow: 0 0 60px rgba(125, 223, 74, 0.08);
}

.cat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 30px rgba(125, 223, 74, 0.15));
    transition: transform 0.5s ease;
}

.cat-circle:hover .cat-image {
    transform: scale(1.05);
}

.glow-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(125, 223, 74, 0.06), transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatCat {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
}

.cat-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #7ddf4a, #b3ff7b);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(125, 223, 74, 0.25);
    animation: spinBadge 12s linear infinite;
    z-index: 5;
    white-space: nowrap;
}

@keyframes spinBadge {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cat-badge i {
    margin-right: 6px;
}

/* ========================================
   SECTION TITLE
   ======================================== */
.section-title {
    font-size: 2.6rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 45px;
    color: #1a1a2e;
    letter-spacing: 3px;
}

.section-title-left {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1a1a2e;
    letter-spacing: 3px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 80px 0 60px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-illustration {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-cat-circle {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 350px;
    background: radial-gradient(ellipse at center, rgba(125, 223, 74, 0.08), transparent 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatCat 4s ease-in-out infinite;
    overflow: hidden;
    border: 3px solid rgba(125, 223, 74, 0.15);
    box-shadow: 0 0 60px rgba(125, 223, 74, 0.08);
}

.about-cat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 30px rgba(125, 223, 74, 0.15));
    transition: transform 0.5s ease;
}

.about-cat-circle:hover .about-cat-image {
    transform: scale(1.05);
}

.about-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(125, 223, 74, 0.06), transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.about-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, #7ddf4a, #b3ff7b);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(125, 223, 74, 0.25);
    animation: spinBadge 12s linear infinite;
    z-index: 5;
    white-space: nowrap;
}

.about-badge i {
    margin-right: 6px;
}

.about-content {
    flex: 1;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(26, 26, 46, 0.6);
    margin-bottom: 16px;
}

.highlight-text {
    color: #7ddf4a;
    font-weight: 600;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(26, 26, 46, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
}

.feature i {
    color: #7ddf4a;
    font-size: 1.3rem;
}

/* ========================================
   HOW TO BUY SECTION
   ======================================== */
.how-to-buy {
    padding: 80px 0 60px;
}

.how-to-buy-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.how-to-buy-content {
    flex: 1;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid rgba(26, 26, 46, 0.06);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.step-item:hover {
    transform: translateX(8px);
    border-color: rgba(125, 223, 74, 0.3);
    box-shadow: 0 8px 30px rgba(125, 223, 74, 0.06);
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: #7ddf4a;
    min-width: 60px;
    line-height: 1;
}

.step-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 0.9rem;
    color: rgba(26, 26, 46, 0.5);
    line-height: 1.5;
}

.how-to-buy-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.how-to-illustration {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-to-cat-circle {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 350px;
    background: radial-gradient(ellipse at center, rgba(125, 223, 74, 0.08), transparent 70%);
    /*border-radius: 50%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatCat 4s ease-in-out infinite;
    overflow: hidden;
    border: 3px solid rgba(125, 223, 74, 0.15);
    box-shadow: 0 0 60px rgba(125, 223, 74, 0.08);
}

.how-to-cat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*border-radius: 50%;*/
    filter: drop-shadow(0 0 30px rgba(125, 223, 74, 0.15));
    transition: transform 0.5s ease;
}

.how-to-cat-circle:hover .how-to-cat-image {
    transform: scale(1.05);
}

.how-to-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(125, 223, 74, 0.06), transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.how-to-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #7ddf4a, #b3ff7b);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(125, 223, 74, 0.25);
    animation: spinBadge 12s linear infinite;
    z-index: 5;
    white-space: nowrap;
}

.how-to-badge i {
    margin-right: 6px;
}

/* ========================================
   TOKENOMICS SECTION
   ======================================== */
.tokenomics {
    padding: 80px 0 60px;
}

.tokenomics-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tokenomics-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.token-illustration {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-cat-circle {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 350px;
    background: radial-gradient(ellipse at center, rgba(125, 223, 74, 0.08), transparent 70%);
    /*border-radius: 50%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatCat 4s ease-in-out infinite;
    overflow: hidden;
    border: 3px solid rgba(125, 223, 74, 0.15);
    box-shadow: 0 0 60px rgba(125, 223, 74, 0.08);
}

.token-cat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*border-radius: 50%;*/
    filter: drop-shadow(0 0 30px rgba(125, 223, 74, 0.15));
    transition: transform 0.5s ease;
}

.token-cat-circle:hover .token-cat-image {
    transform: scale(1.05);
}

.token-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(125, 223, 74, 0.06), transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.token-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: linear-gradient(135deg, #7ddf4a, #b3ff7b);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(125, 223, 74, 0.25);
    animation: spinBadge 12s linear infinite;
    z-index: 5;
    white-space: nowrap;
}

.token-badge i {
    margin-right: 6px;
}

.tokenomics-content {
    flex: 1;
}

.tokenomics-text {
    font-size: 1.05rem;
    color: rgba(26, 26, 46, 0.6);
    margin-bottom: 30px;
    line-height: 1.6;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.token-card {
    background: #ffffff;
    border: 1px solid rgba(26, 26, 46, 0.06);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.token-card:hover {
    transform: scale(1.04);
    border-color: rgba(125, 223, 74, 0.3);
    box-shadow: 0 8px 30px rgba(125, 223, 74, 0.06);
}

.token-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a2e;
}

.token-label {
    color: rgba(26, 26, 46, 0.5);
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 60px 0 40px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(26, 26, 46, 0.5);
    text-decoration: none;
    padding: 14px 28px;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 46, 0.06);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.contact-link:hover {
    background: rgba(125, 223, 74, 0.06);
    color: #1a1a2e;
    border-color: #7ddf4a;
    transform: translateY(-3px);
}

.contact-link i {
    font-size: 1.2rem;
    color: #7ddf4a;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 45px 0 35px;
    border-top: 1px solid rgba(26, 26, 46, 0.06);
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
}

.footer-logo .logo-icon {
    font-size: 1.6rem;
}

.footer-text {
    color: rgba(26, 26, 46, 0.3);
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.6;
}

.footer-text .meme-text {
    color: #7ddf4a;
}

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-socials a {
    color: rgba(26, 26, 46, 0.3);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #7ddf4a;
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 0 40px;
    }
    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-title .highlight {
        font-size: 3.8rem;
    }
    
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .about-features {
        justify-content: center;
    }
    .section-title-left {
        text-align: center;
    }
    
    .how-to-buy-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .step-item {
        text-align: left;
    }
    
    .tokenomics-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .token-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-image,
    .about-image,
    .how-to-buy-image,
    .tokenomics-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title .highlight {
        font-size: 2.8rem;
    }
    .hero-title .sub-title {
        font-size: 1.1rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    
    .section-title-left {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    
    .token-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .contact-grid {
        gap: 12px;
    }
    .contact-link {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .step-number {
        min-width: auto;
    }

    .hero-image,
    .about-image,
    .how-to-buy-image,
    .tokenomics-image {
        max-width: 300px;
        padding: 10px;
    }
    
    .cat-illustration,
    .about-illustration,
    .how-to-illustration,
    .token-illustration {
        max-width: 280px;
    }
    
    .cat-circle,
    .about-cat-circle,
    .how-to-cat-circle,
    .token-cat-circle {
        max-width: 240px;
    }
    
    .cat-badge,
    .about-badge,
    .how-to-badge,
    .token-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
        top: -5px;
        right: -5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    .hero-title .highlight {
        font-size: 2.2rem;
    }
    .btn {
        padding: 14px 24px;
        font-size: 0.85rem;
    }
    .token-grid {
        grid-template-columns: 1fr;
    }
    .step-item {
        padding: 15px 18px;
    }

    .hero-image,
    .about-image,
    .how-to-buy-image,
    .tokenomics-image {
        max-width: 220px;
        padding: 5px;
    }
    
    .cat-illustration,
    .about-illustration,
    .how-to-illustration,
    .token-illustration {
        max-width: 200px;
    }
    
    .cat-circle,
    .about-cat-circle,
    .how-to-cat-circle,
    .token-cat-circle {
        max-width: 170px;
        border-width: 2px;
    }
    
    .cat-badge,
    .about-badge,
    .how-to-badge,
    .token-badge {
        font-size: 0.55rem;
        padding: 4px 10px;
        top: -5px;
        right: -5px;
    }
}