/* Custom styles */
:root {
    --primary-color: #3B82F6; /* Blue-500 */
    --secondary-color: #60A5FA; /* Blue-400 */
    --accent-color: #93C5FD; /* Blue-300 */
    --dark-blue: #1E40AF; /* Blue-800 */
    --light-blue: #EFF6FF; /* Blue-50 */
}

body {
    font-family: 'Quicksand', sans-serif;
}

/* Logo text style */
.logo-text {
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo-text:hover::after {
    transform: scaleX(1);
}

/* Add a cute bounce animation for the wrench emoji */
@keyframes wrenchBounce {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.logo-text + div {
    animation: wrenchBounce 2s infinite;
    display: inline-block;
}

/* Make the gradient text more vibrant */
.logo-text span {
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Game container styles */
.game-container {
    width: 100%;
    height: 85vh;
    position: relative;
    background: var(--light-blue);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    padding: 0;
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Screenshot card hover effects */
.screenshot-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    min-height: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.screenshot-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.screenshot-card .aspect-w-16 {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.screenshot-card img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

/* Feature card styles */
.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Team card styles */
.team-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.team-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Review card styles */
.review-card {
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid var(--accent-color);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.review-avatar {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Section title styles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Language selector styles */
#languageSelector {
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

#languageSelector:hover {
    background-color: var(--accent-color);
    border-color: var(--primary-color);
}

/* Fullscreen button styles */
#fullscreenBtn {
    transition: all 0.3s ease;
    font-weight: 600;
}

#fullscreenBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .game-container {
        height: 70vh;
        width: 100%;
        max-width: 100%;
        margin: 1rem auto;
    }
    
    .feature-card, .team-card {
        padding: 1.5rem;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    .feature-icon, .team-avatar {
        font-size: 2.5rem;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.8s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--secondary-color), var(--primary-color));
} 