/* Global Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #8A2BE2, #4B0082);
    --text-color: #333;
    --background-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Dynamic Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(75, 0, 130, 0.05) 100%);
    z-index: -1;
    animation: gradientShift 15s ease infinite;
}

/* Bouncing Balls Background */
.bouncing-balls {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.1));
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.1);
    animation: bounce 8s infinite;
}

.ball::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 20%;
    height: 20%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.ball:nth-child(1) {
    width: 60px;
    height: 60px;
    left: 10%;
    animation-delay: 0s;
}

.ball:nth-child(2) {
    width: 40px;
    height: 40px;
    left: 30%;
    animation-delay: 1s;
}

.ball:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 50%;
    animation-delay: 2s;
}

.ball:nth-child(4) {
    width: 45px;
    height: 45px;
    left: 70%;
    animation-delay: 3s;
}

.ball:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 90%;
    animation-delay: 4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-100px) scale(0.9);
    }
    50% {
        transform: translateY(0) scale(1);
    }
    75% {
        transform: translateY(100px) scale(1.1);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particle Effects */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(odd) {
    background: rgba(75, 0, 130, 0.2);
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Content Background Enhancement */
.game-container,
.game-features,
.how-to-play,
.player-reviews,
.why-players-love,
.game-reviews,
.game-screenshots {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 2rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ball {
        transform: scale(0.7);
    }
    
    .particle {
        transform: scale(0.8);
    }
}

/* Header Styles */
header {
    background: var(--primary-gradient);
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-family: 'Fredoka One', cursive;
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.language-selector button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.language-selector button:hover {
    background: rgba(255,255,255,0.3);
}

.language-selector select {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1.2em;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
}

.language-selector select:hover {
    background-color: rgba(255,255,255,0.3);
}

.language-selector select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

.language-selector select option {
    background: #4B0082;
    color: white;
    padding: 0.5rem;
}

/* Game Container */
.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.game-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #000;
}

.game-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.fullscreen-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Content Width and Layout Adjustments */
.game-features,
.how-to-play,
.player-reviews,
.why-players-love,
.game-reviews,
.game-screenshots {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

/* Game Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.3);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(75, 0, 130, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card h3 {
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* How to Play Section */
.how-to-play {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.how-to-play h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4B0082;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.how-to-play h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.instructions-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.instruction-card {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.instruction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instruction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.instruction-card:hover::before {
    opacity: 1;
}

.instruction-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.instruction-card h3 {
    color: #4B0082;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.instruction-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

/* Player Reviews Section */
.player-reviews {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(75, 0, 130, 0.05));
    position: relative;
    overflow: hidden;
}

.player-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(75, 0, 130, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.reviews-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
}

.review-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.reviewer-name {
    font-weight: bold;
    color: #4B0082;
}

.review-rating {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Why Players Love Section */
.why-players-love {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(75, 0, 130, 0.05));
    position: relative;
    overflow: hidden;
}

.why-players-love::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(75, 0, 130, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.love-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.love-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.love-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
}

.love-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.love-stats {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.love-stats span {
    background: rgba(75, 0, 130, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4B0082;
}

/* Game Reviews Section */
.game-reviews {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(75, 0, 130, 0.05));
    position: relative;
    overflow: hidden;
}

.game-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 0% 0%, rgba(75, 0, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.reviews-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    font-size: 2rem;
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: bold;
    color: #4B0082;
}

.reviewer-level {
    font-size: 0.9rem;
    color: #666;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.review-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    color: #333;
}

.review-achievements {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.achievement {
    background: rgba(75, 0, 130, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4B0082;
}

/* Screenshots Section */
.game-screenshots {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: scale(1.02);
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.screenshot-item p {
    padding: 1rem;
    text-align: center;
    color: #4B0082;
    font-weight: bold;
}

/* Footer */
footer {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content a {
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2rem;
    }

    .game-container {
        padding: 0 1rem;
    }

    .game-wrapper {
        aspect-ratio: 4/3;
    }

    .fullscreen-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .features-grid,
    .reviews-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .love-grid,
    .reviews-container,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .how-to-play {
        padding: 3rem 1.5rem;
    }

    .how-to-play h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .instructions-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .instruction-card {
        padding: 1.5rem;
    }

    .instruction-icon {
        font-size: 2rem;
    }

    .instruction-card h3 {
        font-size: 1.3rem;
    }

    .instruction-card p {
        font-size: 1rem;
    }

    .player-reviews,
    .why-players-love,
    .game-reviews {
        padding: 3rem 1rem;
    }

    .player-reviews h2,
    .why-players-love h2,
    .game-reviews h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Typography */
h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Card Content Alignment */
.feature-card h3,
.instruction-card h3,
.review-card p,
.love-card h3,
.review-item .review-text {
    text-align: center;
    margin-bottom: 1rem;
}

.feature-card p,
.instruction-card p,
.love-card p {
    text-align: center;
    font-size: 0.95rem;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #000;
}

.carousel-slide p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(75, 0, 130, 0.8);
    color: white;
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gradient);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 0.8;
}

.carousel-button:hover {
    background: linear-gradient(135deg, #9B4BFF, #6B0082);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: #4B0082;
    transform: scale(1.2);
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 1rem;
    }

    .carousel {
        aspect-ratio: 4/3;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-slide p {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 20px;
    }

    .carousel {
        aspect-ratio: 3/4;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Responsive adjustments for how-to-play section */
@media (max-width: 992px) {
    .instructions-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-to-play {
        padding: 3rem 1.5rem;
    }

    .how-to-play h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .instructions-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .instruction-card {
        padding: 1.5rem;
    }

    .instruction-icon {
        font-size: 2rem;
    }

    .instruction-card h3 {
        font-size: 1.3rem;
    }

    .instruction-card p {
        font-size: 1rem;
    }
}

/* Responsive adjustments for game container */
@media (max-width: 1200px) {
    .game-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .game-container {
        padding: 0 0.5rem;
    }

    .game-wrapper {
        aspect-ratio: 3/4;
    }
}

/* Game Statistics Section */
.game-stats {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4B0082;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Game Tips Section */
.game-tips {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tip-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tip-card::before {
    content: attr(data-tip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(75, 0, 130, 0.9);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 200px;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.tip-card:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Screenshot Badge and Stats */
.screenshot-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(75, 0, 130, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
    animation: badgePulse 2s infinite;
    z-index: 2;
}

.screenshot-stats {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.stat {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Enhanced Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(75, 0, 130, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    background: linear-gradient(135deg, #8A2BE2, #4B0082);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-container,
    .tips-container {
        grid-template-columns: 1fr;
    }

    .stat-item,
    .tip-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .tip-card::before {
        width: 150px;
    }

    .screenshot-badge,
    .screenshot-stats {
        transform: scale(0.8);
    }
}

@media (max-width: 1200px) {
    .game-features,
    .how-to-play,
    .player-reviews,
    .why-players-love,
    .game-reviews,
    .game-screenshots {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .features-grid,
    .reviews-grid,
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .love-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .game-features,
    .how-to-play,
    .player-reviews,
    .why-players-love,
    .game-reviews,
    .game-screenshots {
        padding: 1rem;
    }

    .features-grid,
    .instructions-container,
    .reviews-grid,
    .love-grid,
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card,
    .instruction-card,
    .review-card,
    .love-card,
    .review-item {
        aspect-ratio: auto;
        min-height: 200px;
    }

    .carousel-container {
        padding: 0 1rem;
    }
} 