:root {
    --primary: #ccff00;
    --primary-glow: rgba(204, 255, 0, 0.4);
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #a0aab5;
    --glass-bg: rgba(25, 25, 25, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Uncial Antiqua', serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-size: 1.2rem; /* Adjusted back to normal size for Uncial */
    letter-spacing: 1px;
}

/* Background Glows */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    animation: bg-drift 20s infinite alternate ease-in-out;
}
.glow-1 { top: -200px; left: -200px; }
.glow-2 { bottom: -200px; right: -200px; animation-direction: alternate-reverse; animation-duration: 25s; }
.glow-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); animation: pulse-bg 15s infinite alternate ease-in-out; }

@keyframes bg-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

@keyframes pulse-bg {
    0% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.5); }
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.ticker {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}
.social-icon:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--primary);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image-container {
    position: relative;
    margin-bottom: 40px;
    width: 250px;
    height: 250px;
}

.hero-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.logo-ring {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

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

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0; }
}

.contract-box {
    margin-top: 40px;
    padding: 20px 30px;
    display: inline-block;
    border-radius: 100px;
}

.contract-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-align: left;
}

.contract-copy {
    display: flex;
    align-items: center;
    gap: 20px;
}

#contract-address {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--primary);
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    /* Museum/Vintage Frame Effect */
    border: 15px solid #f4ecd8; /* Parchment cream color */
    outline: 2px solid #8c734b; /* Antique gold/bronze outer edge */
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(0,0,0,0.5);
    aspect-ratio: 1 / 1;
    position: relative;
    background: #f4ecd8;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid rgba(0,0,0,0.1); /* Inner thin border */
    pointer-events: none;
    z-index: 10;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Cards */
.glass-card {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(204, 255, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.glass-card p {
    color: var(--text-muted);
}

/* Tokenomics */
.tokenomics-wrapper {
    display: flex;
    padding: 60px;
    align-items: center;
    gap: 60px;
}

.tokenomics-info {
    flex: 1;
}

.tokenomics-info h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.token-list {
    list-style: none;
    margin-top: 40px;
}

.token-list li {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.2rem;
}

.token-list li:last-child {
    border-bottom: none;
}

.label {
    color: var(--text-muted);
}
.value {
    font-weight: bold;
}

.tokenomics-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.circle-chart {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(204, 255, 0, 0.2);
}

.circle-content {
    width: 250px;
    height: 250px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle-content span {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

/* How to Buy Steps */
.step-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -20px;
    right: 10px;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    border-radius: 40px 40px 0 0;
    padding: 60px 0 30px;
    margin-top: 50px;
    border-bottom: none;
    border-left: none;
    border-right: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.footer-links a:hover {
    color: var(--primary);
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    max-width: 600px;
    margin-bottom: 20px;
}

/* Animations */
.fade-up, .fade-left, .fade-right, .zoom-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up { transform: translateY(50px); }
.fade-left { transform: translateX(-50px); }
.fade-right { transform: translateX(50px); }
.zoom-in { transform: scale(0.9); }

.fade-up.visible, .fade-left.visible, .fade-right.visible, .zoom-in.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .tokenomics-wrapper {
        flex-direction: column;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .hamburger span {
        width: 25px; height: 3px; background: #fff;
    }
    
    .contract-copy {
        flex-direction: column;
        align-items: stretch;
    }
    
    #contract-address {
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}
