/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #7b5cff;
    --dark-navy: #05030a;
    --soft-beige: #f4e3c3;
    --soft-white: #f7f5ff;
    --accent-blue: #5a7fff;
    --gradient-purple: linear-gradient(135deg, #7b5cff 0%, #5a7fff 100%);
    --shadow-soft: 0 10px 40px rgba(123, 92, 255, 0.15);
    --shadow-medium: 0 15px 50px rgba(123, 92, 255, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-navy);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-purple);
    border-radius: 10px;
    border: 2px solid var(--dark-navy);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8b6cff 0%, #6a8fff 100%);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-purple) var(--dark-navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a0f2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 150px;
    height: 150px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(123, 92, 255, 0.5));
}

.paw-prints {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.paw-prints .paw {
    font-size: 24px;
    animation: blink 1.5s ease-in-out infinite;
    opacity: 0.7;
}

.paw-prints .paw:nth-child(2) {
    animation-delay: 0.3s;
}

.paw-prints .paw:nth-child(3) {
    animation-delay: 0.6s;
}

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

@keyframes blink {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ============================================
   COPY POPUP NOTIFICATION
   ============================================ */
.copy-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 10001;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.copy-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.popup-content {
    background: rgba(5, 3, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-purple);
    border-radius: 28px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(123, 92, 255, 0.4);
    min-width: 300px;
}

.popup-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    animation: popupBounce 0.6s ease;
}

.popup-content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--soft-white);
    margin: 0;
}

@keyframes popupBounce {
    0% {
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: rgba(5, 3, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(123, 92, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 0 20px rgba(123, 92, 255, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--soft-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a0f2e 50%, var(--dark-navy) 100%);
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bone, .paw-float {
    position: absolute;
    font-size: 30px;
    opacity: 0.3;
    animation: floatAround 15s infinite ease-in-out;
}

.bone-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bone-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.paw-1 {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.paw-2 {
    bottom: 30%;
    left: 20%;
    animation-delay: 7s;
}

.paw-3 {
    top: 70%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, -50px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, 20px) rotate(270deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
}

.hero-logo-container {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--primary-purple);
    box-shadow: 0 0 50px rgba(123, 92, 255, 0.5), 0 0 100px rgba(123, 92, 255, 0.3);
    animation: logoPulse 3s ease-in-out infinite;
    object-fit: cover;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    animation: logoPulse 1s ease-in-out infinite;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 70px rgba(123, 92, 255, 0.7), 0 0 120px rgba(123, 92, 255, 0.5);
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(123, 92, 255, 0.5), 0 0 100px rgba(123, 92, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 70px rgba(123, 92, 255, 0.7), 0 0 120px rgba(123, 92, 255, 0.5);
    }
}

.contract-section {
    margin-top: 50px;
    animation: fadeInUp 1s ease 0.8s both;
}

.contract-box {
    background: rgba(123, 92, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(123, 92, 255, 0.3);
    border-radius: 24px;
    padding: 25px 30px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contract-box:hover {
    background: rgba(123, 92, 255, 0.15);
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.contract-label {
    display: block;
    font-weight: 600;
    color: var(--soft-beige);
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--soft-white);
    background: rgba(5, 3, 10, 0.5);
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(123, 92, 255, 0.3);
    word-break: break-all;
    max-width: 400px;
}

.copy-btn {
    background: var(--gradient-purple);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.copy-btn:hover::before {
    width: 300px;
    height: 300px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

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

.copy-check {
    display: none;
}

.copy-btn.copied {
    background: #4ade80;
}

.copy-btn.copied .copy-text {
    display: none;
}

.copy-btn.copied .copy-check {
    display: inline;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.highlight {
    color: var(--soft-beige);
    -webkit-text-fill-color: var(--soft-beige);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--soft-beige);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(247, 245, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-purple);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--soft-white);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: rgba(123, 92, 255, 0.1);
    transform: translateY(-3px);
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.section-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 0 20px rgba(123, 92, 255, 0.4);
    animation: logoFloat 4s ease-in-out infinite;
    object-fit: cover;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin: 0;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(123, 92, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(123, 92, 255, 0.6));
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-navy) 0%, #0f0819 100%);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: var(--soft-beige);
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
    border: 2px solid transparent;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-medium), 0 0 30px rgba(123, 92, 255, 0.4);
    border-color: var(--primary-purple);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-item::before {
    content: '🐾';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

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

/* ============================================
   TOKENOMICS SECTION
   ============================================ */
.tokenomics {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f0819 0%, var(--dark-navy) 100%);
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(123, 92, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(90, 127, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

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

.tokenomics-card {
    background: rgba(123, 92, 255, 0.1);
    border: 2px solid rgba(123, 92, 255, 0.2);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 92, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tokenomics-card:hover::before {
    opacity: 1;
}

.tokenomics-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-medium), 0 0 40px rgba(123, 92, 255, 0.3);
    background: rgba(123, 92, 255, 0.2);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
    animation: iconBounce 2s ease-in-out infinite;
}

.tokenomics-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
    animation: none;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.card-title {
    font-size: 1.3rem;
    color: var(--soft-beige);
    margin-bottom: 15px;
    font-weight: 600;
}

.card-value {
    font-size: 1.8rem;
    color: var(--primary-purple);
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* ============================================
   HOW TO BUY SECTION
   ============================================ */
.how-to-buy {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-navy) 0%, #0f0819 100%);
    position: relative;
    overflow: hidden;
}

.how-to-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(123, 92, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundPulse 6s ease-in-out infinite;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(123, 92, 255, 0.05);
    border: 2px solid rgba(123, 92, 255, 0.2);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 92, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.step-card:hover::after {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-medium), 0 0 30px rgba(123, 92, 255, 0.3);
    background: rgba(123, 92, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: var(--shadow-soft);
}

.step-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

.step-card:nth-child(2) .step-icon {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) .step-icon {
    animation-delay: 0.4s;
}

.step-card:nth-child(4) .step-icon {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.step-title {
    font-size: 1.4rem;
    color: var(--soft-beige);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-description {
    color: rgba(247, 245, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f0819 0%, var(--dark-navy) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '🐾';
    position: absolute;
    font-size: 200px;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(247, 245, 255, 0.8);
    margin-bottom: 20px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--dark-navy) 0%, #0f0819 100%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(123, 92, 255, 0.1);
    border: 2px solid rgba(123, 92, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 28px;
    height: 28px;
}

.social-link:hover {
    background: var(--gradient-purple);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a050f;
    padding: 50px 20px 30px;
    border-top: 1px solid rgba(123, 92, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-purple);
}

.footer-logo p {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: rgba(247, 245, 255, 0.6);
    font-size: 0.9rem;
}

.powered-by {
    margin-top: 10px;
}

.powered-by span {
    color: var(--primary-purple);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(5, 3, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        gap: 20px;
        border-top: 1px solid rgba(123, 92, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .contract-box {
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }

    .contract-wrapper {
        flex-direction: column;
    }

    .contract-address {
        font-size: 12px;
        padding: 8px 15px;
        max-width: 100%;
    }

    .copy-btn {
        padding: 8px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .section-logo {
        width: 50px;
        height: 50px;
    }

    .section-header {
        gap: 15px;
    }

    .hero {
        min-height: 80vh;
        padding: 80px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .tokenomics-grid,
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .social-link svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contract-content {
        flex-direction: column;
        gap: 10px;
    }

    .contract-address {
        word-break: break-all;
        text-align: center;
    }
}

