* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
    min-height: 100vh;
    overflow-x: hidden;
    padding: 20px;
    color: white;
    position: relative;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
}

.bubble:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
}

.bubble:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 80%;
    animation-delay: -5s;
}

.bubble:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 85%;
    animation-delay: -8s;
}

.bubble:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 80%;
    left: 15%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(10px) translateX(-20px); }
    75% { transform: translateY(-15px) translateX(-15px); }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    animation: fadeIn 1s ease;
}

.logo-icon {
    font-size: 5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.games-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.game-card:nth-child(1) {
    animation-delay: 0.3s;
}

.game-card:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.game-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
}

.game-card h2 i {
    font-size: 1.5rem;
    color: #ff8a00;
}

.game-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff8a00, #e52e71);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 46, 113, 0.4);
    border: none;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(229, 46, 113, 0.6);
    background: linear-gradient(45deg, #ff9a3c, #ff3366);
}

.coming-soon {
    font-size: 1.3rem;
    margin: 40px 0;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

footer {
    margin-top: 30px;
    padding: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .games-container {
        flex-direction: column;
        align-items: center;
    }

    .game-card {
        max-width: 100%;
    }
}
