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

:root {
    --deep-ocean: #0c1015;
    --ocean-blue: #0f1419;
    --teal: #1a3a4a;
    --light-teal: #2a6a7a;
    --aqua: #5fb3aa;
    --foam: #8ecfc4;
    --text-light: #e0e6e9;
    --text-muted: #7a8a94;
    --gold: #c9a855;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--deep-ocean);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/turtle_bg.jpg') center center / cover no-repeat;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.3) 0%,
        rgba(10, 22, 40, 0.6) 50%,
        rgba(10, 22, 40, 0.85) 100%
    );
    z-index: -1;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.noise::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    animation: noiseShift 0.2s steps(2) infinite;
}

@keyframes noiseShift {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-1%, -1%); }
    100% { transform: translate(1%, 1%); }
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-on-scroll.visible.delay-1 { animation-delay: 0.1s; }
.animate-on-scroll.visible.delay-2 { animation-delay: 0.2s; }
.animate-on-scroll.visible.delay-3 { animation-delay: 0.3s; }
.animate-on-scroll.visible.delay-4 { animation-delay: 0.4s; }
.animate-on-scroll.visible.delay-5 { animation-delay: 0.5s; }

.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), rgba(95, 179, 170, 0.08));
    border-radius: 50%;
    animation: rise linear infinite;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.15), 0 0 4px rgba(95, 179, 170, 0.1);
}

.bubble.large {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), rgba(95, 179, 170, 0.06));
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1), 0 0 8px rgba(95, 179, 170, 0.15);
}

@keyframes rise {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.5;
    }
    20% {
        transform: translateY(-20vh) translateX(12px) scale(1.05);
        opacity: 0.6;
    }
    40% {
        transform: translateY(-40vh) translateX(-8px) scale(1.08);
        opacity: 0.5;
    }
    60% {
        transform: translateY(-60vh) translateX(15px) scale(1.05);
        opacity: 0.4;
    }
    80% {
        transform: translateY(-85vh) translateX(-10px) scale(0.95);
        opacity: 0.25;
    }
    100% {
        transform: translateY(-110vh) translateX(5px) scale(0.85);
        opacity: 0;
    }
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease forwards;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--aqua);
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.5));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: 'Cinzel', serif;
}

.nav-links a:hover {
    color: var(--aqua);
}

.nav-links .buy-btn {
    background: var(--aqua);
    padding: 10px 24px;
    border-radius: 5px;
    color: var(--deep-ocean);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.32, 1);
}

.nav-links .buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(95, 179, 170, 0.25);
    color: var(--deep-ocean);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.turtle-float {
    margin-bottom: 30px;
    animation: float 6s ease-in-out infinite, fadeInScale 1s ease forwards;
}

.hero-turtle {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    opacity: 0.9;
}

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

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--aqua) 50%, var(--foam) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    display: none;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-style: italic;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.btn {
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.32, 1);
    display: inline-block;
}

.btn-primary {
    background: var(--aqua);
    color: var(--deep-ocean);
    box-shadow: 0 4px 20px rgba(95, 179, 170, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(95, 179, 170, 0.3);
}

.btn-secondary {
    border: 1px solid rgba(95, 179, 170, 0.4);
    color: var(--text-light);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(95, 179, 170, 0.08);
    border-color: rgba(95, 179, 170, 0.6);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--aqua);
    border-bottom: 2px solid var(--aqua);
    transform: rotate(45deg);
}

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

.price-tracker {
    padding: 40px 20px;
    background: rgba(12, 16, 21, 0.6);
    border-top: 1px solid rgba(95, 179, 170, 0.1);
    border-bottom: 1px solid rgba(95, 179, 170, 0.1);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    text-align: center;
    padding: 20px;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-change {
    display: block;
    font-size: 0.85rem;
    margin-top: 5px;
}

.price-change.positive {
    color: #4ade80;
}

.price-change.negative {
    color: #f87171;
}

@media (max-width: 768px) {
    .price-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .price-card {
        padding: 15px;
        border-bottom: 1px solid rgba(95, 179, 170, 0.1);
    }

    .price-card:last-child {
        border-bottom: none;
    }
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 3px;
    position: relative;
    color: var(--text-light);
    font-weight: 500;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--aqua);
    opacity: 0.6;
}

.theory {
    padding: 120px 20px;
    position: relative;
}

.theory-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.theory-lead {
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.theory-intro p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 15px;
}

.theory-highlight {
    color: var(--aqua) !important;
    font-weight: 500;
    font-size: 1.1rem;
}

.famous-quote {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
    padding: 40px;
    background: rgba(95, 179, 170, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(95, 179, 170, 0.15);
}

.famous-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.famous-quote cite {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--aqua);
    font-style: normal;
    letter-spacing: 1px;
}

.theory-conclusion {
    max-width: 700px;
    margin: 50px auto 0;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(95, 179, 170, 0.15);
}

.theory-conclusion p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.05rem;
}

.theory-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.theory-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(95, 179, 170, 0.1);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.32, 1);
    backdrop-filter: blur(8px);
}

.theory-card:hover {
    transform: translateY(-5px);
    border-color: rgba(95, 179, 170, 0.25);
    background: rgba(15, 20, 25, 0.75);
}

.card-icon {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    opacity: 0.7;
}

.theory-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.theory-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

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

.philosophy-quote blockquote {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.9;
    position: relative;
    padding: 30px 40px;
    border-left: 2px solid rgba(95, 179, 170, 0.3);
    text-align: left;
}

.philosophy-quote blockquote::before,
.philosophy-quote blockquote::after {
    display: none;
}

.about {
    padding: 120px 20px;
    background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.5), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.4rem;
    color: var(--aqua);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.token-info {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.info-item .value {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--aqua);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-turtle {
    animation: floatSlow 8s ease-in-out infinite;
}

.floating-turtle img {
    width: 100%;
    max-width: 350px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(3deg);
    }
    75% {
        transform: translateY(10px) rotate(-3deg);
    }
}

.contract {
    padding: 100px 20px;
}

.ca-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(95, 179, 170, 0.15);
    border-radius: 8px;
    padding: 20px 30px;
    max-width: 750px;
    margin: 0 auto 35px;
    flex-wrap: wrap;
}

.ca-label {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--aqua);
    font-weight: 600;
    letter-spacing: 2px;
}

.ca-address {
    font-family: monospace;
    font-size: clamp(0.7rem, 2vw, 1rem);
    color: var(--text-light);
    word-break: break-all;
    flex: 1;
    text-align: center;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(95, 179, 170, 0.3);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
}

.copy-btn:hover {
    background: rgba(95, 179, 170, 0.1);
    border-color: rgba(95, 179, 170, 0.5);
}

.copy-btn.copied {
    background: rgba(95, 179, 170, 0.15);
    border-color: var(--aqua);
    color: var(--aqua);
}

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

.exchange-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.32, 1);
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.exchange-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.exchange-btn.raydium {
    border-color: rgba(123, 97, 255, 0.25);
}

.exchange-btn.raydium:hover {
    border-color: rgba(123, 97, 255, 0.5);
    background: rgba(123, 97, 255, 0.1);
}

.exchange-btn.dex {
    border-color: rgba(255, 255, 255, 0.15);
}

.exchange-btn.dex:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.exchange-btn.solscan {
    border-color: rgba(0, 232, 181, 0.2);
}

.exchange-btn.solscan:hover {
    border-color: rgba(0, 232, 181, 0.45);
    background: rgba(0, 232, 181, 0.08);
}

.exchange-btn:hover {
    transform: translateY(-2px);
}

.chart {
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.7), transparent);
}

.chart-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.community {
    padding: 120px 20px;
    text-align: center;
}

.community-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 20, 25, 0.5);
    color: var(--text-light);
}

.social-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.social-btn.twitter:hover {
    border-color: rgba(29, 161, 242, 0.4);
}

.social-btn.community:hover {
    border-color: rgba(95, 179, 170, 0.4);
}

.social-btn.telegram:hover {
    border-color: rgba(0, 136, 204, 0.4);
}

.conservation {
    margin-top: 40px;
    padding: 25px;
    background: rgba(15, 20, 25, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(142, 207, 196, 0.15);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.conservation-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.conservation-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--foam);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.conservation-link:hover {
    opacity: 1;
}

.footer {
    padding: 60px 20px 30px;
    background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.9));
    border-top: 1px solid rgba(78, 205, 196, 0.1);
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

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

.footer-logo img {
    width: 50px;
    height: auto;
}

.footer-logo span {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--aqua);
}

.footer-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.6;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-visual {
        order: -1;
    }

    .token-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-turtle {
        width: 150px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .ca-box {
        flex-direction: column;
        padding: 20px;
    }

    .ca-address {
        text-align: center;
    }

    .buy-links {
        flex-direction: column;
        align-items: center;
    }

    .exchange-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        letter-spacing: 4px;
    }

    .section-title {
        letter-spacing: 2px;
    }

    .theory-card {
        padding: 30px 20px;
    }

    .philosophy-quote blockquote {
        padding: 20px;
    }

    .philosophy-quote blockquote::before,
    .philosophy-quote blockquote::after {
        font-size: 2.5rem;
    }
}
