/* ===== HOME PAGE STYLES ===== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(22, 33, 62, 0.85) 100%),
                url('/images/golden-controller.jpg') center right/contain no-repeat;
    background-blend-mode: overlay;
    background-position: 60% 35%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 212, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 107, 53, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 212, 255, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(124, 58, 237, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(10px); }
    66% { transform: translateY(5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Floating Stars Animation */
.floating-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.star {
    position: absolute;
    font-size: 1.5rem;
    animation: floatStar 4s ease-in-out infinite;
    opacity: 0.7;
    filter: drop-shadow(0 0 10px currentColor);
}

@keyframes floatStar {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-25px) rotate(270deg) scale(1.1);
        opacity: 0.9;
    }
}

/* Controller Glow Pulse */
.controller-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Hero Showcase Game Boxes - Floating around controller */
.hero-showcase-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 4;
}

.hero-showcase-box {
    position: absolute;
    width: 230px;
    height: 110px;
    background: rgba(5, 5, 15, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.hero-showcase-box[data-category="coop"] {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 212, 255, 0.4);
}

.hero-showcase-box[data-category="versus"] {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 107, 53, 0.4);
}

.hero-showcase-box[data-category="single"] {
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(124, 58, 237, 0.4);
}

.hero-showcase-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-showcase-box:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 10;
}

.hero-showcase-box:hover img {
    opacity: 1;
}

.hero-showcase-box[data-category="coop"]:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 212, 255, 0.6);
}

.hero-showcase-box[data-category="versus"]:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 107, 53, 0.6);
}

.hero-showcase-box[data-category="single"]:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(124, 58, 237, 0.6);
}

.showcase-category-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.hero-showcase-box[data-category="coop"] .showcase-category-badge {
    background: rgba(0, 212, 255, 0.9);
}

.hero-showcase-box[data-category="versus"] .showcase-category-badge {
    background: rgba(255, 107, 53, 0.9);
}

.hero-showcase-box[data-category="single"] .showcase-category-badge {
    background: rgba(124, 58, 237, 0.9);
}

.showcase-game-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: white;
    padding: 8px 8px 5px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.hero-showcase-box:hover .showcase-game-title {
    opacity: 1;
}

/* Positioning for 6 boxes around the controller - Properly aligned */
.hero-showcase-box-1 {
    top: 18%;
    left: 28.5%;
    animation: floatBox1 4s ease-in-out infinite;
}

.hero-showcase-box-2 {
    top: 18%;
    right: 29%;
    animation: floatBox2 4.5s ease-in-out infinite;
}

.hero-showcase-box-3 {
    top: 42%;
    left: 28%;
    animation: floatBox3 5s ease-in-out infinite;
}

.hero-showcase-box-4 {
    top: 42%;
    right: 28%;
    animation: floatBox4 4.2s ease-in-out infinite;
}

.hero-showcase-box-5 {
    bottom: 28%;
    left: 32%;
    animation: floatBox5 4.8s ease-in-out infinite;
}

.hero-showcase-box-6 {
    bottom: 28%;
    right: 32%;
    animation: floatBox6 5.2s ease-in-out infinite;
}

/* Floating animations for each box */
@keyframes floatBox1 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-12px) translateX(3px); }
}

@keyframes floatBox2 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-8px) translateX(-5px); }
    50% { transform: translateY(-15px) translateX(5px); }
    75% { transform: translateY(-10px) translateX(-3px); }
}

@keyframes floatBox3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-12px) translateX(-3px); }
    50% { transform: translateY(-8px) translateX(5px); }
    75% { transform: translateY(-15px) translateX(-5px); }
}

@keyframes floatBox4 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-14px) translateX(-5px); }
    75% { transform: translateY(-8px) translateX(3px); }
}

@keyframes floatBox5 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(-5px); }
    50% { transform: translateY(-10px) translateX(5px); }
    75% { transform: translateY(-12px) translateX(-3px); }
}

@keyframes floatBox6 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-12px) translateX(5px); }
    50% { transform: translateY(-8px) translateX(-5px); }
    75% { transform: translateY(-14px) translateX(3px); }
}

/* Connection Lines Container */
.player-icons {
    position: relative;
}

.connection-lines {
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70vh;
    max-width: 1800px;
    margin: 0 auto;
    padding-left: 4rem;
    padding-right: 4rem;
    gap: 3rem;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
    text-align: left;
    max-width: 420px;
    min-height: 600px;
    background: rgba(5, 5, 15, 0.92);
    backdrop-filter: blur(25px);
    padding: 2rem 2.5rem 2rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(0, 212, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        -10px 0 30px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-right: auto;
    transform: translateX(-20px);
    display: flex;
    flex-direction: column;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--primary-color),
        var(--accent-color),
        var(--secondary-color),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

.hero-text::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        var(--primary-color),
        var(--accent-color),
        var(--secondary-color)
    );
    box-shadow: 0 0 20px var(--primary-color);
}

@keyframes shimmer {
    0%, 100% { opacity: 0.6; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.hero-title {
    margin-bottom: var(--spacing-lg);
}

.title-main {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--accent-color) 50%,
        var(--secondary-color) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.7));
    margin-bottom: 0.3rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.title-sub {
    display: block;
    font-size: 1.4rem;

/* Hero Features Pills */
.hero-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.4);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out backwards;
}

.feature-pill:nth-child(1) { animation-delay: 0.3s; }
.feature-pill:nth-child(2) { animation-delay: 0.4s; }
.feature-pill:nth-child(3) { animation-delay: 0.5s; }
.feature-pill:nth-child(4) { animation-delay: 0.6s; }

.feature-pill:hover {
    background: rgba(0, 212, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Subtle glowing style for the game catalog pill */
.feature-pill-glow {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: #ffd700;
    font-weight: 700;
    animation: subtleGlow 2s ease-in-out infinite, slideInLeft 0.6s ease-out backwards;
}

.feature-pill-glow .pill-text {
    white-space: normal;
}

.feature-pill-glow:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 140, 0, 0.25));
    border-color: rgba(255, 215, 0, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.3), 0 0 25px rgba(255, 215, 0, 0.15);
        border-color: rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 35px rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.7);
    }
}

.pill-icon {
    font-size: 1rem;
}

.pill-text {
    white-space: nowrap;
}

.hero-description strong {
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.highlight-text {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; text-shadow: 0 0 25px rgba(0, 212, 255, 0.8); }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.6s; }
.stat-item:nth-child(2) { animation-delay: 0.7s; }
.stat-item:nth-child(3) { animation-delay: 0.8s; }

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-top: 0.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(255, 107, 53, 0.6);
    padding: 0.4rem 0;
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
    position: relative;
}

.hero-tagline::before {
    content: '👑';
    position: absolute;
    left: -1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-actions .btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Featured Games Section */
.featured-games {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(45deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);

/* Enhanced Mission Panel Styling */
.hero-mission-wrapper {
    animation: slideInRight 1s ease-out;
    text-align: left;
    max-width: 420px;
    min-height: 600px;
    background: rgba(5, 5, 15, 0.92);
    backdrop-filter: blur(25px);
    padding: 2rem 2.5rem 2rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.4);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(255, 107, 53, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        10px 0 30px rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateX(20px);
    display: flex;
    flex-direction: column;
}

.hero-mission-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--primary-color),
        var(--accent-color),
        var(--secondary-color),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

.hero-mission-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        var(--secondary-color),
        var(--accent-color),
        var(--primary-color)
    );
    box-shadow: 0 0 20px var(--secondary-color);
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(255, 107, 53, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission-emoji {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.mission-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.highlight-item:nth-child(1) { animation-delay: 0.2s; }
.highlight-item:nth-child(2) { animation-delay: 0.4s; }
.highlight-item:nth-child(3) { animation-delay: 0.6s; }

.highlight-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.highlight-text strong {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.mission-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.mission-quote {
    position: relative;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.mission-quote i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    opacity: 0.5;
}

.mission-quote p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0.5rem 0;
    line-height: 1.6;
    font-weight: 500;
}

.player-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.player-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    animation: popIn 0.5s ease-out backwards;
    transition: all 0.3s ease;
}

.player-icon:nth-child(1) { animation-delay: 0.1s; }
.player-icon:nth-child(2) { animation-delay: 0.2s; }
.player-icon:nth-child(3) { animation-delay: 0.3s; }
.player-icon:nth-child(4) { animation-delay: 0.4s; }

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.player-icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.plus-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        gap: 2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hero-text,
    .hero-mission-wrapper {
        max-width: 600px;
        transform: translateX(0);
    }
    
    .hero-mission-wrapper {
        animation: fadeInUp 1s ease-out;
    }
}

@media (max-width: 768px) {
    .hero-text,
    .hero-mission-wrapper {
        text-align: center;
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .mission-title {
        justify-content: center;
        font-size: 2rem;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}
    position: relative;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
}

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a1a2e;
}

.game-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
    display: block;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-actions {
    display: flex;
    gap: var(--spacing-md);
}

.btn-play {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-play:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-info {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-info:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.game-info {
    padding: var(--spacing-lg);
}

.game-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.game-genre {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.stars {
    color: var(--secondary-color);
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.section-footer {
    text-align: center;
}

/* Features Section */
.features-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.cta-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(45deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide showcase boxes on mobile */
    .hero-showcase-container {
        display: none;
    }
    
    /* Hero Section Mobile Optimization */
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-background {
        background-position: center center;
        background-size: cover;
    }
    
    .hero-container {
        justify-content: center;
        padding-left: 1rem;
        padding-right: 1rem;
        min-height: auto;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Hide mission panel on mobile to save space */
    .hero-mission-wrapper {
        display: none;
    }
    
    .hero-text {
        text-align: center;
        padding: 1.5rem 1rem;
        max-width: 100%;
        min-height: auto;
        margin-right: 0;
        transform: translateX(0);
        border: 1px solid rgba(0, 212, 255, 0.3);
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--secondary-color);
        padding-top: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .feature-pill {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Hide "All You Need" section on mobile */
    .hero-requirements {
        display: none;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Scroll indicator */
    .scroll-indicator {
        display: none;
    }
    
    /* Section titles */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    /* Grids */
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Feature cards */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 1.75rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .hero-text {
        padding: 1.25rem 0.75rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .feature-pill {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* News Section Styles */
.news-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.title-icon {
    font-size: 2rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.title-content {
    text-align: center;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 0, 0, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-text {
    color: #ff0000;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.news-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.news-card.featured {
    grid-column: 1;
    grid-row: 1 / 3;
}

.news-card.mega-card {
    grid-row: 1 / 3;
}

.news-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-card.featured .news-image,
.news-card.mega-card .news-image {
    height: 350px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.news-badge.hot {
    background: rgba(255, 107, 53, 0.9);
    color: white;
    animation: hotPulse 2s ease-in-out infinite;
}

@keyframes hotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.news-badge.breaking {
    background: rgba(255, 0, 0, 0.9);
    color: white;
}

.news-badge.tournament {
    background: rgba(255, 215, 0, 0.9);
    color: #000;
}

.news-badge.new {
    background: rgba(0, 212, 255, 0.9);
    color: white;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.news-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.news-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.news-date.trending {
    color: var(--secondary-color);
    font-weight: 700;
}

.news-category {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

.news-category.platform {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-color);
}

.news-category.performance {
    background: rgba(255, 107, 53, 0.1);
    color: var(--secondary-color);
}

.news-category.community {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.news-category.feature {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.4;
}

.news-card.featured .news-title,
.news-card.mega-card .news-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.news-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stat i {
    color: var(--primary-color);
}

.news-source {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.news-source i {
    color: var(--primary-color);
}

.tournament-info {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.prize, .participants {
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffd700;
}

.feature-tags {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.tag {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--primary-color);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    margin-top: auto;
}

.news-link:hover {
    color: var(--primary-dark);
    gap: var(--spacing-md);
}

.news-link.premium {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    justify-content: center;
}

.news-link.premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.news-ticker {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ticker-text {
    display: inline-block;
    color: var(--text-secondary);
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive News Section */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .news-card.featured {
        grid-column: 1 / 3;
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured,
    .news-card.mega-card {
        grid-column: 1;
        grid-row: auto;
    }
    
    .news-card.featured .news-image,
    .news-card.mega-card .news-image {
        height: 250px;
    }
    
    .section-title-wrapper {
        flex-direction: column;
    }
}

/* Ryu Character Animation */
.ryu-character {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ryu-body {
    position: relative;
    width: 200px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: ryuStance 3s ease-in-out infinite;
}

.ryu-head {
    font-size: 4rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    animation: ryuBreathe 2s ease-in-out infinite;
}

.ryu-gi {
    width: 80px;
    height: 120px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.ryu-gi::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: linear-gradient(45deg, #e0e0e0, #ffffff);
    border-radius: 5px;
}

.ryu-belt {
    width: 90px;
    height: 15px;
    background: linear-gradient(45deg, #000000, #333333);
    margin: 5px 0;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.ryu-stance {
    width: 100px;
    height: 80px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    border-radius: 0 0 20px 20px;
    position: relative;
}

.ryu-stance::before,
.ryu-stance::after {
    content: '';
    position: absolute;
    bottom: -20px;
    width: 30px;
    height: 40px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 5px;
}

.ryu-stance::before {
    left: 10px;
}

.ryu-stance::after {
    right: 10px;
}

.hadoken-energy {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.8) 0%, rgba(0, 100, 200, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    animation: hadokenPulse 1.5s ease-in-out infinite;
}

.hadoken-energy::before {
    content: '💥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    animation: energyRotate 2s linear infinite;
}

.ryu-aura {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: ryuAura 4s ease-in-out infinite;
}

@keyframes ryuStance {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-5px) scale(1.02);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
    75% {
        transform: translateY(-5px) scale(1.02);
    }
}

@keyframes ryuBreathe {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(0, 150, 255, 0.8));
    }
}

@keyframes hadokenPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 1;
    }
}

@keyframes energyRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ryuAura {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* Responsive adjustments for Ryu */
@media (max-width: 768px) {
    .ryu-character {
        height: 300px;
    }
    
    .ryu-body {
        width: 150px;
        height: 250px;
    }
    
    .ryu-head {
        font-size: 3rem;
    }
    
    .ryu-gi {
        width: 60px;
        height: 100px;
    }
    
    .ryu-belt {
        width: 70px;
    }
    
    .ryu-stance {
        width: 80px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}