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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-color: #ffffff;
    --text-muted: #c0c0c0;
    --highlight: #9d7aff;
    --gradient: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #9333ea 100%);
    --gradient-hover: linear-gradient(135deg, #9333ea 0%, #8b5cf6 50%, #7c3aed 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    background-image: url('img/tardbg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
    background: rgba(10, 10, 20, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.mobile-search-btn {
    display: none;
}

.mobile-nav-right {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.nav-menu li.mobile-buy-item {
    display: none;
}

@media (max-width: 768px) {
    .navbar .container {
        display: grid;
        grid-template-columns: 1fr auto;
    }
    
    .nav-brand {
        order: 1;
    }
    
    .mobile-nav-right {
        order: 2;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .mobile-menu-toggle {
        order: 2;
    }
    
    .nav-menu {
        order: 3;
        position: static;
        transform: none;
        flex: none;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.btn-nav-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav-search:hover,
.btn-nav-search:focus {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-nav-search svg {
    width: 20px;
    height: 20px;
}

.btn-nav-buy {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid var(--text-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav-buy:hover,
.btn-nav-buy:focus {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--highlight);
}

.hero-section {
    padding: 8rem 0 6rem;
    background: transparent;
    position: relative;
    scroll-margin-top: 80px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 2px rgba(124, 58, 237, 0.15))
            drop-shadow(0 0 4px rgba(139, 92, 246, 0.15));
    line-height: 1.1;
}

.hero-description {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 500;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 70%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-exchanges {
    margin-bottom: 3rem;
}

.ai-search-section {
    margin-top: 3rem;
    scroll-margin-top: 100px;
}

.chart-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.chart-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#dexscreener-embed {
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.1);
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 600px;
    padding-bottom: 150%;
}

@media (min-width: 768px) {
    #dexscreener-embed {
        padding-bottom: 100%;
        min-height: 700px;
    }
}

@media (min-width: 1400px) {
    #dexscreener-embed {
        padding-bottom: 65%;
        min-height: 800px;
    }
}

#dexscreener-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
    min-height: 600px;
}

.hero-search {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 4rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 4rem;
    background: radial-gradient(circle at center, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 2px rgba(124, 58, 237, 0.15));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-hover);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before,
.btn-primary:focus::before {
    left: 0;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(124, 58, 237, 0.6), 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.4);
}


.search-section {
    padding: 6rem 0;
    background: transparent;
    min-height: 60vh;
}

.hero-search .search-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-search .ai-overview {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-search .ai-overview {
        margin-top: 1rem;
    }
}

.hero-search .search-results {
    margin-top: 2rem;
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.search-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.search-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.ai-badge-top {
    position: absolute;
    top: -8px;
    right: -25px;
    background: var(--gradient);
    color: var(--text-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(124, 58, 237, 0.5);
    }
    50% {
        box-shadow: 0 2px 12px rgba(139, 92, 246, 0.7);
    }
}

@keyframes glow-pulse {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
                     0 0 10px rgba(124, 58, 237, 0.8),
                     0 0 20px rgba(124, 58, 237, 0.6),
                     0 0 30px rgba(139, 92, 246, 0.5),
                     0 0 40px rgba(124, 58, 237, 0.4),
                     0 0 50px rgba(139, 92, 246, 0.3);
        filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.6));
    }
    100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.7),
                     0 0 15px rgba(124, 58, 237, 1),
                     0 0 25px rgba(124, 58, 237, 0.8),
                     0 0 35px rgba(139, 92, 246, 0.7),
                     0 0 50px rgba(124, 58, 237, 0.6),
                     0 0 60px rgba(139, 92, 246, 0.4),
                     0 0 70px rgba(124, 58, 237, 0.3);
        filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.8)) 
                drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
    }
}

.search-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.search-box-container {
    width: 100%;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 30px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(124, 58, 237, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.search-image-icon {
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.search-image-icon:hover {
    border-color: rgba(124, 58, 237, 0.6);
    transform: scale(1.05);
}

.image-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.remove-image {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.search-image-icon:hover .remove-image {
    opacity: 1;
}

.remove-image:hover {
    background: var(--highlight);
    border-color: var(--highlight);
}

.search-box:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.search-box:focus-within {
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    border-color: rgba(124, 58, 237, 0.6);
}

.search-icon {
    color: var(--text-muted);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-color);
    font-size: 1rem;
    padding: 0;
}

.search-box input::placeholder {
    color: var(--text-muted);
}


.search-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.search-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 4px;
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.search-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.ai-overview {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 58, 237, 0.15);
}

.ai-header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 20px;
    color: #9d7aff;
    font-size: 0.85rem;
    font-weight: 500;
}

.ai-badge svg {
    color: #9d7aff;
}

.ai-image-preview-mobile {
    display: none;
}

.ai-image-preview-desktop {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition);
}

.ai-image-preview-desktop:hover {
    border-color: rgba(124, 58, 237, 0.6);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.ai-image-preview-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
    font-weight: 300;
    line-height: 1;
}

.image-modal-close:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.ai-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: start;
}

.ai-text {
    flex: 1;
}

.ai-intro {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.ai-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.ai-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8ab4f8;
    font-weight: bold;
    font-size: 1.2rem;
}

.search-results {
    max-width: 900px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(10, 10, 20, 0.6);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(124, 58, 237, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 58, 237, 0.15);
}

.results-header {
    margin-bottom: 1.5rem;
}

.results-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.result-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result-item:last-child {
    border-bottom: none;
}

.result-url {
    color: #9d7aff;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.result-title {
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.result-title a {
    color: #9d7aff;
    font-size: 1.25rem;
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.result-title a:hover {
    text-decoration: underline;
    color: #8b5cf6;
}

.result-title a:visited {
    color: #7c3aed;
}

.result-snippet {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.related-searches {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-title {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.related-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-item {
    color: #9d7aff;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.related-item:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4);
    color: #8b5cf6;
}

.pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pagination-logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.8;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    color: #9d7aff;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    min-width: 32px;
    text-align: center;
}

.page-number:hover {
    background: rgba(124, 58, 237, 0.15);
    color: #8b5cf6;
}

.page-number.active {
    color: var(--text-color);
    background: rgba(124, 58, 237, 0.25);
}

.page-next {
    color: #9d7aff;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.page-next:hover {
    background: rgba(124, 58, 237, 0.15);
    color: #8b5cf6;
}


.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -1px;
    filter: drop-shadow(0 0 1.5px rgba(124, 58, 237, 0.15));
}

.about {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.4);
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.tardigrade-facts {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 15px;
    border-left: 4px solid var(--highlight);
    backdrop-filter: blur(10px);
}

.tardigrade-facts h3 {
    margin-bottom: 1rem;
    color: var(--highlight);
    font-size: 1.3rem;
}

.tardigrade-facts ul {
    list-style: none;
    padding-left: 0;
}

.tardigrade-facts li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.tardigrade-facts li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: bold;
    font-size: 1.2rem;
}

.how-to-buy {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.1);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(124, 58, 237, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.step h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.step p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contract-address {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.1);
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.exchange-buttons {
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.1);
}

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

.exchange-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.exchange-btn:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.exchange-name {
    color: #ffffff;
}

.contract-address p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.address-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.address-box code {
    background: rgba(10, 10, 20, 0.7);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    word-break: keep-all;
    color: var(--highlight);
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(124, 58, 237, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.btn-copy {
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--text-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    white-space: nowrap;
}

.btn-copy:hover,
.btn-copy:focus {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.5);
}

.btn-copy:active {
    transform: scale(0.98);
}

.about-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.about-content:hover {
    border-color: rgba(124, 58, 237, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text:last-child {
    margin-bottom: 0;
}

.tokenomics {
    padding: 6rem 0;
    background: transparent;
}

.tokenomics-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tokenomics-item {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.1);
}

.tokenomics-item:hover {
    border-color: rgba(124, 58, 237, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tokenomics-item h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
}

.large-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.tokenomics-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.roadmap {
    padding: 6rem 0;
    background: transparent;
}

.roadmap-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.phase {
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border-left: 4px solid rgba(124, 58, 237, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-left: 4px solid rgba(124, 58, 237, 0.6);
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 58, 237, 0.1);
}

.phase:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phase h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.phase p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.footer {
    padding: 4rem 0 2rem;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.9;
}

.social-links {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    padding: 0.75rem 2rem;
    background: var(--gradient);
    border-radius: 50px;
    display: inline-block;
    transition: var(--transition);
    font-size: 1rem;
}

.social-links a:hover,
.social-links a:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.disclaimer {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    margin: 1rem auto;
    line-height: 1.6;
    max-width: 800px;
}

.copyright {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .hero .container {
        gap: 3rem;
    }
    
    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        grid-template-columns: 1fr auto;
        justify-items: start;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .mobile-nav-right {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        justify-self: end;
        position: relative;
        z-index: 100;
    }

    .mobile-search-btn {
        display: flex !important;
        width: 40px;
        height: 40px;
        padding: 0;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .nav-brand {
        justify-self: start;
    }

    .nav-actions {
        display: none !important;
        visibility: hidden;
    }

    .btn-nav-buy {
        display: none !important;
    }

    .btn-nav-search:not(.mobile-search-btn) {
        display: none !important;
        visibility: hidden;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem 2rem;
    }

    .nav-menu li.mobile-buy-item {
        display: block;
        margin-top: 1.5rem;
        padding-top: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1rem;
        border-top: 1px solid rgba(124, 58, 237, 0.2);
    }

    .mobile-buy-link {
        display: block;
        padding: 0.6rem 1.5rem;
        background: var(--gradient);
        color: var(--text-color);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        text-align: center;
        transition: var(--transition);
        border: 2px solid transparent;
        margin: 0 auto;
        max-width: fit-content;
        line-height: 1.2;
    }

    .mobile-buy-link:hover,
    .mobile-buy-link:focus {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(124, 58, 237, 0.5);
        border-color: rgba(124, 58, 237, 0.5);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-buy-btn {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-nav-buy-mobile {
        display: block;
        padding: 1rem 2rem;
        background: var(--gradient);
        color: var(--text-color);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        transition: var(--transition);
        margin: 0 auto;
        max-width: 200px;
    }

    .btn-nav-buy-mobile:hover,
    .btn-nav-buy-mobile:focus {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(124, 58, 237, 0.5);
    }


    .search-section {
        padding: 4rem 0;
    }

    .search-wrapper {
        padding: 1rem;
    }

    .search-logo-img {
        height: 50px;
        max-width: 150px;
    }

    .ai-badge-top {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
        top: -6px;
        right: -20px;
    }

    .search-subtitle {
        font-size: 0.85rem;
    }

    .search-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .search-btn {
        width: 100%;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .tokenomics-content {
        grid-template-columns: 1fr;
    }

    .roadmap-phases {
        grid-template-columns: 1fr;
    }

    .address-box {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .address-box code {
        text-align: center;
        white-space: nowrap;
        font-size: clamp(0.65rem, 2.2vw, 0.75rem);
        padding: 0.75rem 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .btn-copy {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .chart-section .container {
        padding: 0;
    }

    #dexscreener-embed {
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .logo-img {
        height: 60px;
        max-width: 100px;
    }

    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .about,
    .about-section,
    .how-to-buy,
    .tokenomics,
    .roadmap,
    .search-section,
    .chart-section {
        padding: 3rem 0;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .chart-section {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

    .chart-section .container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    #dexscreener-embed {
        padding-bottom: 0;
        border-radius: 15px;
        min-height: 600px;
        height: 600px;
        margin: 15px auto;
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        box-sizing: border-box;
        display: block;
        position: relative;
        left: 0;
        right: 0;
    }

    #dexscreener-embed iframe {
        min-height: 600px;
        height: 600px !important;
    }

    .search-wrapper {
        padding: 0.5rem;
    }

    .result-title {
        font-size: 1.1rem;
    }

    .search-logo-img {
        height: 40px;
        max-width: 120px;
    }

    .ai-badge-top {
        font-size: 0.6rem;
        padding: 0.15rem 0.35rem;
        top: -5px;
        right: -15px;
    }

    .hero-section {
        padding: 5rem 0 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-text {
        gap: 1.25rem;
        padding: 0 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1.2;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .hero-description {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        line-height: 1.5;
        padding: 0 0.5rem;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1rem;
        padding-top: 50px !important;
    }

    .hero-image img {
        max-width: 85%;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .hero-exchanges {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .contract-address {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }

    .address-box {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .address-box code {
        white-space: nowrap;
        font-size: clamp(0.6rem, 2.8vw, 0.7rem);
        padding: 0.75rem 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        text-align: center;
    }

    .btn-copy {
        width: 100%;
        white-space: nowrap;
    }

    .ai-search-section {
        margin-top: 2.5rem;
        padding: 0 0.5rem;
    }

    .search-subtitle {
        font-size: 0.8rem;
    }

    .footer-logo-img {
        height: 60px;
        max-width: 120px;
    }

    .ai-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .ai-image-preview-desktop {
        display: none;
    }

    .ai-image-preview-mobile {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
        cursor: pointer;
        transition: var(--transition);
        order: 1;
    }

.ai-image-preview-mobile:hover {
    border-color: rgba(124, 58, 237, 0.6);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

    .ai-image-preview-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ai-header {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .ai-text {
        width: 100%;
        text-align: left;
        order: 2;
    }

    .hero-search .ai-overview {
        margin-top: 1rem;
    }

    .contract-address {
        margin-top: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .address-box {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .address-box code {
        white-space: nowrap;
        font-size: clamp(0.55rem, 3.2vw, 0.65rem);
        padding: 0.75rem 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        text-align: center;
    }

    .btn-copy {
        width: 100%;
        white-space: nowrap;
    }

    .exchange-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .exchange-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .image-modal {
        padding: 1rem;
    }

    .footer-logo-img {
        height: 60px;
        max-width: 150px;
    }

    .image-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .image-modal-close {
        top: -30px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .related-items {
        grid-template-columns: 1fr;
    }

    .pagination-numbers {
        gap: 0.25rem;
    }

    .page-number {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .pagination-logo-img {
        height: 60px;
        max-width: 120px;
    }

    .step,
    .tokenomics-item,
    .phase {
        padding: 1.5rem;
    }

    .contract-address {
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

