/*
Theme Name: Crypto Theme (Solana Overhaul)
Theme URI: #
Author: Anonymous
Description: A high-contrast Solana theme using Inter and the signature Purple/Green gradient.
Version: 6.0
Text Domain: neonwave
*/

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar - Solana Gradient */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #000; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9945FF, #14F195); 
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important; 
}

/* GRADIENT TEXT FOR PROSE HEADERS */
/* Solana Gradient: Green to Purple */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    background: linear-gradient(135deg, #ffffff 0%, #14F195 50%, #9945FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 4px 20px rgba(20, 241, 149, 0.15);
    margin-top: 2.5rem !important;
    margin-bottom: 1rem !important;
}

.prose p, 
.entry-content p,
.wp-block-paragraph,
p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    color: #ffffff !important;
    opacity: 0.95;
}

a {
    transition: all 0.2s ease;
}

/* =========================================
   CONTENT FIXES
   ========================================= */

.wp-block-gallery {
    gap: 2rem !important;
}

.wp-block-image img {
    border-radius: 0.75rem !important;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Default Buttons */
.wp-block-button__link {
    background: linear-gradient(135deg, #9945FF 0%, #7025c7 100%) !important;
    color: #fff !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
}
.wp-block-button__link:hover {
    background: linear-gradient(135deg, #14F195 0%, #0fb872 100%) !important;
    color: #000 !important;
    opacity: 1;
}