/* JESUS COIN | Divine Design System */

:root {
    --gold: #FFD700;
    --gold-light: #FFF4A3;
    --gold-dark: #B8860B;
    --divine-blue: #007AFF;
    --divine-blue-glow: rgba(0, 122, 255, 0.4);
    --black: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
}

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

body {
    background-color: var(--black);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .font-display {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 10px;
}

/* Shimmer Gold Effect */
.shimmer-gold {
    background: linear-gradient(
        to right,
        var(--gold-dark) 20%,
        var(--gold) 40%,
        var(--gold-light) 50%,
        var(--gold) 60%,
        var(--gold-dark) 80%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* Custom Cursor */
#cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out;
}

#cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

/* Hero Section */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.15) 0%, transparent 70%);
}

/* Marquee */
.marquee-container {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Roadmap Path */
.roadmap-step {
    position: relative;
    padding-left: 3rem;
    border-left: 2px solid rgba(255, 215, 0, 0.1);
}

.roadmap-step::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold);
}

/* Buttons */
.btn-primary {
    background: var(--gold);
    color: black;
    padding: 1rem 2.5rem;
    border-radius: 99px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    border: 1px solid var(--gold);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 99px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Magazine Section */
.magazine-visual {
    perspective: 1000px;
}

.magazine-hover {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.magazine-hover:hover {
    transform: rotateY(-15deg) rotateX(10deg) scale(1.05);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    height: 800px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-cover: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    filter: grayscale(0.5);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.3;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .gallery-item {
        height: 300px;
    }
}
