/* Base Styles */
:root {
    --neon-violet: #8f00ff;
    --midnight-purple: #1a001f;
    --sakura-pink: #ff8cda;
    --electric-blue: #00eaff;
    --dark-purple: #120014;
    --light-purple: #a64dff;
    --light-pink: #ffb6e6;
    --text-light: #ffffff;
    --text-dark: #1a001f;
    --shadow-neon: 0 0 10px rgba(143, 0, 255, 0.7), 0 0 20px rgba(143, 0, 255, 0.5);
    --shadow-blue: 0 0 10px rgba(0, 234, 255, 0.7), 0 0 20px rgba(0, 234, 255, 0.5);
    --shadow-pink: 0 0 10px rgba(255, 140, 218, 0.7), 0 0 20px rgba(255, 140, 218, 0.5);
}

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

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background-color: var(--midnight-purple);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Press Start 2P', cursive;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
    color: var(--electric-blue);
    text-shadow: var(--shadow-blue);
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--sakura-pink), var(--electric-blue));
    border-radius: 3px;
}

/* Header Styles */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    color: var(--sakura-pink);
    text-shadow: var(--shadow-pink);
    letter-spacing: 2px;
}

.logo-text-latin {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: var(--electric-blue);
    text-shadow: var(--shadow-blue);
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    font-weight: 500;
    padding: 5px 0;
    color: var(--text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-blue);
    transition: width 0.3s ease;
    box-shadow: var(--shadow-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(26, 0, 31, 0.7), rgba(26, 0, 31, 0.9)), url('https://images.pexels.com/photos/7915471/pexels-photo-7915471.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--sakura-pink);
    text-shadow: var(--shadow-pink);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--neon-violet), var(--electric-blue));
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-neon);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--electric-blue), var(--sakura-pink));
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.parallax-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-image: url('https://images.pexels.com/photos/3052361/pexels-photo-3052361.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.3;
    z-index: 1;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background-color: var(--dark-purple);
    position: relative;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--neon-violet);
}

.game-card-inner {
    position: relative;
    background-color: rgba(26, 0, 31, 0.8);
    border-radius: 10px;
    padding-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    aspect-ratio: 1/1;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 0, 31, 0), rgba(26, 0, 31, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-card h3 {
    padding: 15px;
    font-size: 16px;
    text-align: center;
    color: var(--electric-blue);
    text-shadow: var(--shadow-blue);
}

.play-button {
    display: block;
    width: 80%;
    margin: auto auto 0;
    padding: 10px;
    background: linear-gradient(45deg, var(--neon-violet), var(--sakura-pink));
    color: var(--text-light);
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--sakura-pink), var(--electric-blue));
    transition: left 0.3s ease;
    z-index: -1;
}

.play-button:hover::before {
    left: 0;
}

/* Trending Section */
.trending-section {
    padding: 100px 0;
    background-color: var(--midnight-purple);
    position: relative;
}

.trending-carousel {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    overflow-x: hidden;
}

.trending-card {
    flex: 0 0 calc(33.333% - 20px);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.trending-card:hover {
    transform: translateY(-10px);
}

.trending-card-inner {
    position: relative;
    background-color: var(--dark-purple);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.trending-card-inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-violet), var(--sakura-pink), var(--electric-blue));
    z-index: -1;
    border-radius: 15px;
    animation: borderGlow 2s infinite alternate;
}

.trending-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--sakura-pink);
    color: var(--midnight-purple);
    font-weight: bold;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: var(--shadow-pink);
}

.trending-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trending-card:hover .trending-image img {
    transform: scale(1.1);
}

.trending-content {
    padding: 20px;
    position: relative;
}

.trending-avatar {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--dark-purple);
    box-shadow: var(--shadow-neon);
}

.trending-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--electric-blue);
    text-shadow: var(--shadow-blue);
}

.trending-stars {
    color: var(--sakura-pink);
    font-size: 18px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--neon-violet);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--electric-blue);
    box-shadow: var(--shadow-blue);
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: var(--dark-purple);
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon-violet);
    box-shadow: var(--shadow-neon);
    margin-bottom: 20px;
    z-index: 2;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-bubble {
    position: relative;
    background-color: var(--light-purple);
    border-radius: 10px;
    padding: 20px;
    margin-top: -40px;
    padding-top: 50px;
    box-shadow: var(--shadow-neon);
    width: 100%;
}

.review-bubble::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--light-purple);
    margin-top: -15px;
}

.review-stars {
    color: var(--sakura-pink);
    margin-bottom: 10px;
    font-size: 18px;
}

.review-bubble p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-style: italic;
}

.review-name {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--electric-blue);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 80px 0;
    background-color: var(--midnight-purple);
    position: relative;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    background: rgba(143, 0, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-neon);
}

.disclaimer-mascot {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background-image: url('https://images.pexels.com/photos/5011647/pexels-photo-5011647.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    border-radius: 50%;
}

.disclaimer-text {
    width: 100%;
    max-width: 800px;
}

.disclaimer-text h2 {
    color: var(--sakura-pink);
    text-shadow: var(--shadow-pink);
    font-size: 24px;
}

.disclaimer-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Footer */
.site-footer {
    padding: 50px 0;
    background-color: var(--dark-purple);
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-links ul {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--electric-blue);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sakura-pink);
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 14px;
}

/* Glow Text Effect */
.glow-text {
    animation: textGlow 2s infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px var(--sakura-pink), 0 0 10px var(--sakura-pink);
    }
    100% {
        text-shadow: 0 0 10px var(--sakura-pink), 0 0 20px var(--sakura-pink), 0 0 30px var(--sakura-pink);
    }
}

@keyframes borderGlow {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}