:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --brown-dark: #3E2723;
    --brown-shit: #5D4037;
    --black: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #888;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--black);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--gold-dark), transparent);
    animation: float 10s infinite ease-in-out;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--brown-dark), transparent);
    animation: float 12s infinite ease-in-out reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 50px);
    }
}

/* Navbar */
.navbar {
    padding: 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-main);
    width: 24px;
    height: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.logo-container {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.coin {
    width: 150px;
    height: 150px;
    position: relative;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: spin 5s infinite linear;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.coin-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gold-dark);
    backface-visibility: hidden;
    /* Hide the back when facing away */
    user-select: none;
}

.coin-img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.front {
    /* Default front */
}

.back {
    transform: rotateY(180deg);
}

@keyframes spin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--gold), #fff, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Contract Address */
.ca-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 500px;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    font-weight: 700;
}

.ca-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ca-box:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.ca-text {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-main);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 1rem;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.copy-feedback {
    position: absolute;
    top: -30px;
    right: 0;
    background: var(--gold);
    color: var(--black);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

/* Buy Button */
.buy-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.buy-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer {
    font-size: 0.7rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.4;
}

.copyright {
    font-size: 0.8rem;
    color: #444;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .title {
        font-size: 2.5rem;
    }

    .coin {
        width: 100px;
        height: 100px;
    }

    .coin-face {
        font-size: 3rem;
    }
}