/* Custom styles for Blossom Link */
:root {
    --primary-color: #FF69B4;
    --secondary-color: #FFB6C1;
    --accent-color: #FFC0CB;
    --text-color: #333;
    --background-color: #FFF5F5;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Logo styling */
.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Game iframe container */
.game-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Fullscreen button */
#fullscreenBtn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#fullscreenBtn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Section styling */
section {
    padding: 80px 0;
}

section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.5rem;
}

/* Feature cards */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Review cards */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Team member cards */
.team-member {
    text-align: center;
    padding: 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

/* Language selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-selector select {
    padding: 8px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    background: white;
    color: var(--text-color);
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }
}

/* Animation effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin: 10px 0;
}

/* Navigation styling */
nav a {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Game screenshots */
.screenshot-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.screenshot-container img {
    transition: transform 0.3s ease;
}

.screenshot-container:hover img {
    transform: scale(1.05);
} 