/* Custom styles */
:root {
    --primary-color: #ff4d6d; /* Vibrant red for anime theme */
    --secondary-color: #ff8fa3; /* Lighter pink */
    --accent-color: #ffccd5; /* Very light pink */
    --text-color: #2d3748;
    --bg-color: #fff5f6; /* Very light pink background */
    --card-bg: #ffffff;
    --shadow-color: rgba(255, 77, 109, 0.2); /* Red shadow */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: url('../images/pattern.png');
    background-repeat: repeat;
    background-size: 200px;
    background-opacity: 0.1;
}

/* Logo styles */
.logo {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px var(--shadow-color);
    font-weight: 800;
    letter-spacing: 1px;
}

/* Game container styles */
.game-container {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 800px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 20px var(--shadow-color);
    border: 3px solid var(--primary-color);
}

/* Feature card styles */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    border: 2px solid var(--accent-color);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px var(--shadow-color);
    border-color: var(--primary-color);
}

.feature-card h3 {
    color: var(--primary-color);
    font-weight: 700;
}

/* Screenshot styles */
.screenshot {
    transition: transform 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.screenshot:hover {
    transform: scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.screenshot img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 14px;
}

/* Review card styles */
.review-card {
    transition: transform 0.3s ease;
    border-radius: 16px;
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 80px;
    color: var(--accent-color);
    opacity: 0.5;
    font-family: serif;
}

/* Language selector styles */
.language-selector {
    padding: 0.5rem;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--shadow-color);
}

/* Fullscreen button styles */
.fullscreen-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 8px var(--shadow-color);
}

.fullscreen-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 768px) {
    .game-container {
        height: 60vh;
    }
    
    .feature-card, .screenshot, .review-card {
        margin-bottom: 1rem;
    }
    
    .screenshot img {
        height: 250px;
    }
}

/* Animation styles */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Footer styles */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--accent-color), var(--primary-color), var(--accent-color));
}

/* Section styles */
section {
    padding: 4rem 0;
    position: relative;
}

/* Heading styles */
h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent-color), var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

/* Button styles */
button {
    transition: all 0.3s ease;
    border-radius: 12px;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid styles */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Anime-style decorative elements */
.decorative-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary-color);
}

.decorative-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.decorative-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.decorative-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.decorative-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
} 