/* DevTron Dark Mode - TRON Style */
/* Neon-Cyan: #00D9FF */

/* === GLOBAL STYLES === */
body {
    background-color: #0a0a0a !important;
    color: #e0e0e0 !important;
}

/* === HEADER === */
.header-main,
.site-header {
    background-color: #000000 !important;
    border-bottom: 1px solid #00D9FF !important;
}

.site-title a,
.navbar a,
.nav-menu a {
    color: #00D9FF !important;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    transition: all 0.3s ease;
}

.site-title a:hover,
.navbar a:hover,
.nav-menu a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.site-description {
    color: #00D9FF !important;
    font-style: italic;
}

/* === MAIN CONTENT === */
.site-main,
.content-wrap,
article {
    background-color: #0a0a0a !important;
    color: #e0e0e0 !important;
}

/* === HEADINGS === */
h1, h2, h3, h4, h5, h6 {
    color: #00D9FF !important;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

h1 {
    font-size: 2.5em !important;
    letter-spacing: 2px;
}

/* === LINKS === */
a {
    color: #00D9FF !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

/* === POSTS === */
.entry-title a {
    color: #00D9FF !important;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
}

.entry-content {
    color: #d0d0d0 !important;
    line-height: 1.8;
    font-size: 1.1em;
}

.entry-meta,
.posted-on,
.byline {
    color: #808080 !important;
    font-size: 0.9em;
}

/* === BUTTONS === */
.button,
.wp-block-button__link,
input[type="submit"] {
    background-color: #00D9FF !important;
    color: #000000 !important;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    transition: all 0.3s ease;
}

.button:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.8);
}

/* === SIDEBAR & WIDGETS === */
.sidebar,
.widget {
    background-color: #0a0a0a !important;
    color: #e0e0e0 !important;
    border: 1px solid #1a1a1a;
}

.widget-title {
    color: #00D9FF !important;
    border-bottom: 2px solid #00D9FF;
    padding-bottom: 10px;
}

/* === FOOTER === */
.site-footer {
    background-color: #000000 !important;
    color: #808080 !important;
    border-top: 1px solid #00D9FF !important;
}

.site-footer a {
    color: #00D9FF !important;
}

/* === FORMS === */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
    border: 1px solid #00D9FF !important;
    padding: 10px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    border-color: #00D9FF !important;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    outline: none;
}

/* === BLOCKQUOTES === */
blockquote {
    background-color: #1a1a1a !important;
    border-left: 4px solid #00D9FF !important;
    color: #d0d0d0 !important;
    padding: 20px;
    font-style: italic;
}

/* === CODE BLOCKS === */
code,
pre {
    background-color: #1a1a1a !important;
    color: #00D9FF !important;
    border: 1px solid #00D9FF;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

/* === TABLES === */
table {
    background-color: #0a0a0a !important;
    border: 1px solid #00D9FF !important;
}

th {
    background-color: #00D9FF !important;
    color: #000000 !important;
    font-weight: bold;
}

td {
    color: #e0e0e0 !important;
    border: 1px solid #1a1a1a;
}

/* === LOGO GLOW === */
.site-logo img,
.custom-logo {
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
}

/* === SCROLLBAR (Webkit) === */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #00D9FF;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    h1 {
        font-size: 2em !important;
    }
    
    .entry-content {
        font-size: 1em;
    }
}
