
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Ubuntu+Mono:wght@400;700&display=swap');
body {
    font-family: 'Space Mono', monospace;
    scroll-behavior: smooth;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    color: #f0f0f0;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

main {
    padding-top: 2rem;
}

.gold-gradient-text {
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-border {
    border-color: #D4AF37;
}
.gold-hover:hover {
    color: #FFD700;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.shadow-gold-500\/30 {
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.3);
}

.shadow-gold-500\/50 {
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.5);
}

/* Enhanced gold hover effects */
.hover\:text-gold-300:hover {
    color: #FFD700;
}

.transition-all {
    transition-property: all;
}

.duration-300 {
    transition-duration: 300ms;
}

.transform {
    transform: translateZ(0);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}
/* Custom scrollbar with golden accent */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}
/* Animation for golden elements */
@keyframes golden-pulse {
    0% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.8; transform: scale(1); }
}

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

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.golden-pulse {
    animation: golden-pulse 3s ease-in-out infinite;
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* Neon glow effect */
.neon-glow {
    text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 15px #FFD700, 0 0 20px #D4AF37;
}

/* Hover glow effect */
.hover-glow:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transition: box-shadow 0.3s ease;
}
/* Golden ratio inspired shapes */
.golden-spiral {
    position: relative;
}

.golden-spiral::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 2px solid #D4AF37;
    border-radius: 0 100% 0 0;
    opacity: 0.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .golden-spiral::before {
        display: none;
    }
}