/* Street Fighter Alpha 2 - Modern Theme */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&display=swap');

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

body {
    min-height: 100vh;
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.8;
    padding: 2rem;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.logo-section img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
    transition: transform 0.3s ease;
}

.logo-section img:hover {
    transform: scale(1.05);
}

/* Character Header */
.character-header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.character-header img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.character-header img:hover {
    border-color: #ff0080;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.4);
    transform: scale(1.1);
}

.character-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Page Title (for main pages) */
.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Moves Section */
.moves-section {
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #00d4ff;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.move {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.move:hover {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(5px);
}

.move strong {
    color: #ff0080;
    font-weight: 700;
}

/* Divider */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    margin: 2rem 0;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d4ff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.back-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateX(-5px);
}

/* Character Grid (for main page) */
.character-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.character-grid a {
    display: block;
    transition: all 0.3s ease;
}

.character-grid img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.character-grid a:hover img {
    border-color: #ff0080;
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.5);
    transform: scale(1.1) translateY(-5px);
}

/* Links Section */
.links-section {
    text-align: center;
    margin: 2rem 0;
}

.links-section a {
    display: inline-block;
    color: #00d4ff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.links-section a:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* Instruction text */
.instruction {
    text-align: center;
    font-size: 1.2rem;
    color: #aaa;
    margin: 1.5rem 0;
}

/* Decorative line image */
.decorative-line {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.5rem auto;
    opacity: 0.6;
}

/* Hero image */
.hero-image {
    display: block;
    max-width: 250px;
    height: auto;
    margin: 1.5rem auto;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

/* Tips/Tricks specific styles */
.tip-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.tip-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff0080;
    margin-bottom: 1rem;
}

.tip-block p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.note {
    background: rgba(255, 0, 128, 0.1);
    border-left: 3px solid #ff0080;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    font-size: 1.1rem;
}

/* Screenshots page */
.screenshot-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.screenshot-grid img {
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.screenshot-grid img:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .container {
        padding: 1.5rem;
    }

    .character-name {
        font-size: 1.8rem;
    }

    .character-header {
        flex-direction: column;
    }

    .move {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}
