/*
Theme Name: Tilted Arcades
Theme URI: https://tiltedarcades.fun
Author: Tilted Arcades
Author URI: https://tiltedarcades.fun
Description: Retro arcade child theme for Twenty Twenty-Four. Features neon purple, cyan, and pink color palette with authentic 80s arcade vibes. Perfect for showcasing retro game rooms, pinball, and claw machines.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfour
Text Domain: tilted-arcades
Tags: arcade, retro, neon, gaming, entertainment, block-theme, full-site-editing
*/

/* ============================================
   TILTED ARCADES - CUSTOM STYLES
   Neon Retro Arcade Theme
   ============================================ */

/* Root Color Variables - Neon Arcade Palette */
:root {
    --arcade-purple: #6B2D8B;
    --arcade-cyan: #00F0FF;
    --arcade-pink: #FF00AA;
    --arcade-yellow: #FFD700;
    --arcade-dark: #0A0A1F;
    --arcade-black: #000000;
    --arcade-white: #FFFFFF;
}

/* Global Neon Glow Effects */
.neon-purple {
    color: var(--arcade-purple);
    text-shadow: 
        0 0 5px var(--arcade-purple),
        0 0 10px var(--arcade-purple),
        0 0 20px var(--arcade-cyan);
}

.neon-cyan {
    color: var(--arcade-cyan);
    text-shadow: 
        0 0 5px var(--arcade-cyan),
        0 0 10px var(--arcade-cyan);
}

.neon-pink {
    color: var(--arcade-pink);
    text-shadow: 
        0 0 5px var(--arcade-pink),
        0 0 15px var(--arcade-pink);
}

/* Header & Navigation */
.wp-block-navigation a {
    transition: all 0.3s ease;
}

.wp-block-navigation a:hover {
    color: var(--arcade-cyan) !important;
    text-shadow: 0 0 10px var(--arcade-cyan);
}

/* Buttons - Arcade Style */
.wp-block-button__link {
    background-color: var(--arcade-purple) !important;
    border: 3px solid var(--arcade-cyan) !important;
    color: white !important;
    font-family: "Press Start 2P", system-ui;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 0 10px var(--arcade-cyan),
        inset 0 0 10px rgba(255,255,255,0.3);
    transition: all 0.2s ease;
}

.wp-block-button__link:hover {
    background-color: var(--arcade-pink) !important;
    border-color: var(--arcade-yellow) !important;
    box-shadow: 
        0 0 20px var(--arcade-pink),
        0 0 30px var(--arcade-cyan);
    transform: translateY(-2px);
}

/* Site Title & Logo */
.wp-block-site-title a {
    color: var(--arcade-cyan) !important;
    text-shadow: 
        0 0 10px var(--arcade-cyan),
        0 0 20px var(--arcade-purple);
    font-family: "Press Start 2P", system-ui;
}

/* Hero / Cover Block Enhancement */
.wp-block-cover {
    position: relative;
}

.wp-block-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(10,10,31,0.4), rgba(10,10,31,0.6)),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 240, 255, 0.03) 2px,
            rgba(0, 240, 255, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Arcade Section Styling */
.arcade-section {
    background: var(--arcade-dark);
    border: 4px solid var(--arcade-cyan);
    box-shadow: 
        0 0 20px var(--arcade-cyan),
        inset 0 0 20px rgba(0, 240, 255, 0.2);
}

.arcade-section h2 {
    color: var(--arcade-pink);
    text-shadow: 0 0 15px var(--arcade-pink);
}

/* Footer */
footer {
    background: var(--arcade-black);
    border-top: 3px solid var(--arcade-purple);
}

/* Pixel Art Feel for Images */
img {
    image-rendering: crisp-edges;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .wp-block-button__link {
        font-size: 14px;
        padding: 12px 20px;
    }
}