/* ==========================================================================
   WP AI Masterclass - Custom Theme Styles
   ========================================================================== */

/* --- Glass Card --- */
.glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 235, 255, 0.1);
}

/* --- Gradient Border Card --- */
.gradient-border {
    position: relative;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 1.5rem;
    z-index: 1;
}
.gradient-border::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, #8aebff, #6bd8cb);
    border-radius: 1.5rem;
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0.4;
}

/* --- Glow Button --- */
.glow-btn {
    box-shadow: 0 0 20px rgba(138, 235, 255, 0.2);
}
.glow-btn:hover {
    box-shadow: 0 0 30px rgba(138, 235, 255, 0.4);
}

/* --- Neural Background --- */
.neural-bg {
    background-image: radial-gradient(circle at 50% 50%, rgba(138, 235, 255, 0.05) 0%, transparent 70%);
}

/* --- FAQ Accordion --- */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* --- WordPress Specific --- */
.wp-block-image img {
    border-radius: 1.5rem;
}

/* Screen reader text - WP accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #1b2b3f;
    clip: auto !important;
    clip-path: none;
    color: #8aebff;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
