/*
Theme Name: 8ase0f0ps Playground Custom Theme
Theme URI: https://playground.8ase0f0ps.com
Author: MAB + Claude Sonnet 4.5
Author URI: https://playground.8ase0f0ps.com
Description: Custom theme for 8ase0f0ps Playground WordPress site.
Version: 1.0
Requires at least: 6.8.3
Tested up to: 6.8.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 8ase0f0ps-playground
*/

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

:root {
    --golden-yellow: #ebd939;
    --purple-magenta: #8f11a8;
    --dark-purple: #1a0f2f;
    --matrix-green: #00ff41;
    --white-text: #ffffff;
    --card-bg: rgba(26, 15, 47, 0.85);
    --border-color: rgba(235, 217, 57, 0.4);
}

body {
    font-family: 'Courier New', monospace;
    background: #000000;
    color: var(--white-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Matrix Background */
#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 15, 47, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--golden-yellow);
    text-shadow: 0 0 10px var(--golden-yellow);
    animation: glitch 3s infinite;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--golden-yellow);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--purple-magenta);
    text-shadow: 0 0 10px var(--purple-magenta);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-magenta);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    color: var(--golden-yellow);
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 80px;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: glitch 5s infinite;
    background: linear-gradient(135deg, var(--golden-yellow), var(--purple-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .tagline {
    font-size: 1.5rem;
    color: var(--golden-yellow);
    margin-bottom: 2rem;
}

.testing-badge {
    display: inline-block;
    background: rgba(143, 17, 168, 0.2);
    border: 2px solid var(--purple-magenta);
    color: var(--purple-magenta);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 10px var(--golden-yellow); }
    20% { text-shadow: 2px 0 10px var(--golden-yellow), -2px 0 10px var(--purple-magenta); }
    40% { text-shadow: -2px 0 10px var(--golden-yellow), 2px 0 10px var(--matrix-green); }
    60% { text-shadow: 0 0 10px var(--golden-yellow); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: 2px solid var(--golden-yellow);
    background: transparent;
    color: var(--golden-yellow);
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--golden-yellow);
    transition: left 0.3s;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: #000000;
    box-shadow: 0 0 20px var(--golden-yellow);
}

.btn-secondary {
    border-color: var(--purple-magenta);
    color: var(--purple-magenta);
}

.btn-secondary::before {
    background: var(--purple-magenta);
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--golden-yellow);
    text-shadow: 0 0 15px var(--golden-yellow);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--golden-yellow), var(--purple-magenta), var(--matrix-green));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(235, 217, 57, 0.3);
}

.feature-card:hover::before {
    opacity: 0.7;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--golden-yellow);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-badge {
    display: inline-block;
    background: rgba(143, 17, 168, 0.2);
    border: 1px solid var(--purple-magenta);
    color: var(--purple-magenta);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Registration Form */
.signup-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 3rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--golden-yellow);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
    color: var(--white-text);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple-magenta);
    box-shadow: 0 0 10px rgba(143, 17, 168, 0.3);
}

.security-notice {
    background: rgba(143, 17, 168, 0.1);
    border: 1px solid var(--purple-magenta);
    color: var(--white-text);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.info-box {
    background: rgba(235, 217, 57, 0.1);
    border: 1px solid var(--golden-yellow);
    color: var(--white-text);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.payment-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.payment-card:hover {
    border-color: var(--purple-magenta);
    transform: scale(1.05);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--purple-magenta);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(235, 217, 57, 0.3);
}

.price {
    font-size: 3rem;
    color: var(--golden-yellow);
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li::before {
    content: '▸ ';
    color: var(--purple-magenta);
}

/* Token Pricing Table */
.token-table {
    max-width: 800px;
    margin: 2rem auto;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.token-table table {
    width: 100%;
    border-collapse: collapse;
}

.token-table th {
    background: rgba(143, 17, 168, 0.3);
    color: var(--golden-yellow);
    padding: 1rem;
    text-align: left;
}

.token-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.token-table tr:hover {
    background: rgba(235, 217, 57, 0.1);
}

/* SLA Section */
.sla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sla-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.sla-card h3 {
    color: var(--purple-magenta);
    margin-bottom: 1rem;
}

.sla-card .highlight {
    color: var(--golden-yellow);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--purple-magenta);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--golden-yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--white-text);
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--purple-magenta);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: var(--dark-purple);
    border-top: 2px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-section h3 {
    color: var(--golden-yellow);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--white-text);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--purple-magenta);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 2px solid var(--golden-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--golden-yellow);
    color: #000000;
    transform: scale(1.1);
}

.copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--golden-yellow);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-purple);
    border: 2px solid var(--golden-yellow);
    padding: 3rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--golden-yellow);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    color: var(--purple-magenta);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 15, 47, 0.98);
        padding: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .signup-container {
        padding: 2rem;
    }

    .token-table {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Success Message */
.success-message {
    background: rgba(0, 255, 65, 0.2);
    border: 2px solid var(--matrix-green);
    color: var(--matrix-green);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

.success-message.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.plan-note {
    font-size: 0.85rem;
    color: var(--purple-magenta);
    margin-top: 0.5rem;
    font-style: italic;
}
