* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background: #000000;
    color: #E6EAF2;
}

/* Glass Panel */
.glass-panel {
    background: rgba(11, 14, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Elevated Panel */
.elevated-panel {
    background: rgba(17, 19, 26, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Stat Card */
.stat-card {
    background: rgba(11, 14, 20, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Payout Container */
.payout-container {
    background: rgba(77, 227, 255, 0.05);
    border: 1px solid rgba(77, 227, 255, 0.2);
}

/* Monospace */
.monospace {
    font-family: "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", monospace;
}

.monospace-block {
    font-family: "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", monospace;
    background: rgba(11, 14, 20, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Primary Button */
.btn-primary {
    background: rgba(77, 227, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(77, 227, 255, 0.3);
    color: #4DE3FF;
    transition: border-color 200ms ease, opacity 200ms ease;
}

.btn-primary:hover:not(:disabled) {
    border-color: rgba(77, 227, 255, 0.5);
}

.btn-primary:active:not(:disabled) {
    opacity: 0.9;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary:focus:not(:disabled) {
    outline: 2px solid rgba(77, 227, 255, 0.5);
    outline-offset: 2px;
}

/* Secondary Button */
.btn-secondary {
    background: rgba(31, 255, 213, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(31, 255, 213, 0.3);
    color: #1FFFD5;
    transition: border-color 200ms ease, opacity 200ms ease;
}

.btn-secondary:hover:not(:disabled) {
    border-color: rgba(31, 255, 213, 0.5);
}

.btn-secondary:active:not(:disabled) {
    opacity: 0.9;
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary:focus:not(:disabled) {
    outline: 2px solid rgba(31, 255, 213, 0.5);
    outline-offset: 2px;
}

/* Navigation Link */
.nav-link {
    color: #8A8F9C;
    font-weight: 500;
    transition: color 200ms ease;
    text-decoration: none;
}

.nav-link:hover {
    color: #E6EAF2;
}

.nav-link:focus {
    outline: 2px solid rgba(77, 227, 255, 0.5);
    outline-offset: 2px;
}

/* Download Link */
.download-link {
    color: #4DE3FF;
    text-decoration: none;
    transition: color 200ms ease;
}

.download-link:hover {
    color: #1FFFD5;
}

.download-link:focus {
    outline: 2px solid rgba(77, 227, 255, 0.5);
    outline-offset: 2px;
}

/* Brand Name */
.brand-name {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.12em;
    color: #E6EAF2;
}

/* Subline */
.subline {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #8A8F9C;
}

/* Status Indicator */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    background: #8A8F9C;
    transition: background 200ms ease;
}

.status-indicator.active {
    background: #4DE3FF;
    box-shadow: 0 0 8px rgba(77, 227, 255, 0.5);
}

.status-text.active {
    color: #4DE3FF;
}

/* CPU Throttle Slider */
.throttle-slider {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.throttle-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #4DE3FF;
    border-radius: 50%;
    cursor: pointer;
    transition: background 200ms ease;
}

.throttle-slider::-webkit-slider-thumb:hover {
    background: #1FFFD5;
}

.throttle-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4DE3FF;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: background 200ms ease;
}

.throttle-slider::-moz-range-thumb:hover {
    background: #1FFFD5;
}

.throttle-slider:focus {
    outline: 2px solid rgba(77, 227, 255, 0.5);
    outline-offset: 2px;
}

.throttle-value {
    font-family: "SF Mono", "Monaco", "Cascadia Code", "Roboto Mono", monospace;
    font-size: 14px;
    color: #8A8F9C;
    margin-top: 8px;
}

/* Coming Soon Text */
.coming-soon {
    color: #8A8F9C;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 48px;
    }
}

