/* Global Platform Styles */
:root {
    /* Color Palette */
    --primary-bg: #000000;
    --secondary-bg: #1a1a1a;
    --accent-cyan: #00ffff;
    --accent-magenta: #ff00ff;
    --accent-gold: #ffd700;
    --accent-green: #00ff00;
    --accent-red: #ff0000;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-glow: rgba(255, 0, 255, 0.5);
}

/* Reset and Base */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Arial Black', Arial, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Utility Classes */
.text-glow {
    text-shadow: 0 0 10px currentColor;
}

.box-glow {
    box-shadow: 0 0 15px var(--border-glow);
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 15px var(--border-glow); }
    to { box-shadow: 0 0 30px var(--border-glow); }
}

/* Common Button Styles */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-magenta), var(--accent-cyan));
    color: var(--primary-bg);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--secondary-bg), #333333);
    color: var(--text-primary);
    border: 1px solid #666666;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    cursor: wait;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
} 