:root {
    --gold: #d4af37;
    --dark-gold: #b8860b;
    --light-gold: #ffdf00;
    --brown: #8b4513;
    --cream: #fffdd0;
    --dark-brown: #5d4037;
    --black: #181818;
    --pink: #ffb6c1;
    --soft-purple: #d8bfd8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cinzel', serif;
}

body {
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.6;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="%23181818"/><circle cx="50" cy="50" r="2" fill="%23d4af37" opacity="0.3"/><circle cx="100" cy="50" r="1" fill="%23d4af37" opacity="0.3"/><circle cx="150" cy="50" r="2" fill="%23d4af37" opacity="0.3"/><circle cx="25" cy="100" r="1" fill="%23d4af37" opacity="0.3"/><circle cx="75" cy="100" r="2" fill="%23d4af37" opacity="0.3"/><circle cx="125" cy="100" r="1" fill="%23d4af37" opacity="0.3"/><circle cx="175" cy="100" r="2" fill="%23d4af37" opacity="0.3"/><circle cx="50" cy="150" r="1" fill="%23d4af37" opacity="0.3"/><circle cx="100" cy="150" r="2" fill="%23d4af37" opacity="0.3"/><circle cx="150" cy="150" r="1" fill="%23d4af37" opacity="0.3"/></svg>');
}

/* Light and cloud effects */
.light-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.cloud {
    position: fixed;
    width: 100px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
    animation: cloud-float 60s infinite linear;
}

.cloud:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.cloud:nth-child(2) {
    top: 30%;
    left: 70%;
    animation-delay: -10s;
}

.cloud:nth-child(3) {
    top: 60%;
    left: 10%;
    animation-delay: -20s;
}

.cloud:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-delay: -30s;
}

.cloud:nth-child(5) {
    top: 40%;
    left: 40%;
    animation-delay: -40s;
}

@keyframes cloud-float {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(100px) translateY(-50px);
    }
    50% {
        transform: translateX(200px) translateY(0);
    }
    75% {
        transform: translateX(100px) translateY(50px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.logo-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-color: var(--gold);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--cream);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn {
    background: linear-gradient(to right, var(--dark-gold), var(--gold), var(--light-gold));
    color: var(--dark-brown);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Life Journey Styles */
.life-journey {
    margin-top: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    max-width: 100%;
    width: 100%;
}

.journey-title {
    text-align: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.journey-stages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
}

.journey-stage {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.journey-stage:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--pink), var(--light-gold));
}

.journey-stage:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--light-gold), var(--soft-purple));
}

.journey-stage:nth-child(3)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--soft-purple), var(--gold));
}

.journey-stage:nth-child(4)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gold), var(--dark-gold));
}

.journey-stage:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.3);
}

.stage-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.stage-title {
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.stage-quote {
    color: var(--cream);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .journey-stages {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.sacred-book {
    position: relative;
    width: 200px;
    height: 250px;
    margin: 0 auto 40px;
    background-color: var(--brown);
    border-radius: 5px;
    border: 10px solid var(--dark-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.7);
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(15deg);
}

.sacred-book::after {
    content: "BOOK OF MOM";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    background-color: rgba(139, 69, 19, 0.9);
    border: 5px solid var(--dark-gold);
    box-sizing: border-box;
}

.sacred-book::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.7) 0%, rgba(139, 69, 19, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.1) 5%, rgba(212, 175, 55, 0) 10%, rgba(212, 175, 55, 0.1) 15%, rgba(212, 175, 55, 0) 20%, rgba(212, 175, 55, 0.1) 25%, rgba(212, 175, 55, 0) 30%, rgba(212, 175, 55, 0.1) 35%, rgba(212, 175, 55, 0) 40%, rgba(212, 175, 55, 0.1) 45%, rgba(212, 175, 55, 0) 50%, rgba(212, 175, 55, 0.1) 55%, rgba(212, 175, 55, 0) 60%, rgba(212, 175, 55, 0.1) 65%, rgba(212, 175, 55, 0) 70%, rgba(212, 175, 55, 0.1) 75%, rgba(212, 175, 55, 0) 80%, rgba(212, 175, 55, 0.1) 85%, rgba(212, 175, 55, 0) 90%, rgba(212, 175, 55, 0.1) 95%, rgba(212, 175, 55, 0) 100%);
    animation: rotate 60s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-badge {
    background-color: var(--gold);
    color: var(--dark-brown);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--cream);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 25px;
    border-radius: 5px;
    border: 1px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cream);
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.section-subtitle {
    text-align: center;
    margin: -30px auto 50px;
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--dark-gold), var(--gold), var(--light-gold));
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
}

.about-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--gold);
}

/* Token Info Section */
.token-info-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.token-info-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 30px;
    border: 1px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.token-info-card h3 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contract-box {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    overflow: hidden;
}

.contract-box code {
    font-family: monospace;
    color: var(--cream);
    font-size: 0.9rem;
    word-break: break-all;
}

.copy-btn {
    background: linear-gradient(to right, var(--dark-gold), var(--gold));
    color: var(--dark-brown);
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2), 0 0 10px rgba(212, 175, 55, 0.3);
}

.token-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.token-detail-item {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 10px rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.token-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 55, 0.2);
}

.detail-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    color: var(--gold);
}

.detail-text h4 {
    color: var(--gold);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.detail-text p {
    color: var(--cream);
    font-size: 0.9rem;
}

/* How to Buy */
.buy {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.buy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.buy-step {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    color: var(--dark-brown);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.buy-step h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--cream);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--dark-brown);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--cream);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 253, 208, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .sacred-book {
        width: 150px;
        height: 200px;
    }
}

/* Animation for floating elements */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}