/* Word Orbit Game Styles */

/* Home Page Styles */
.home-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: calc(100vh - 60px);
    padding: 40px 0;
    margin-top: -24px;
}

.light-box {
    background: rgba(248, 245, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.15);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.light-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.25);
}

.hero-section {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.game-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.game-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 30px;
}

.mode-card {
    background: rgba(248, 245, 255, 0.98);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.mode-card:hover {
    border-color: #7c3aed;
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.mode-card h3 {
    color: #7c3aed;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.mode-card p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.mode-card .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-daily {
    background: linear-gradient(135deg, #e0c3fc 0%, #d4a5f9 100%);
    border: none;
    color: #4a148c;
    font-weight: 600;
}

.btn-weekly {
    background: linear-gradient(135deg, #fbc8d4 0%, #f8b6d3 100%);
    border: none;
    color: #6a1b9a;
    font-weight: 600;
}

.btn-mini {
    background: linear-gradient(135deg, #c3e9d0 0%, #a8d8c8 100%);
    border: none;
    color: #2e7d32;
    font-weight: 600;
}

.btn-casual {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border: none;
    color: white;
}

.how-to-play {
    background: rgba(248, 245, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.how-to-play h2 {
    color: #7c3aed;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5rem;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(147, 51, 234, 0.1);
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #7c3aed;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    color: #6b7280;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: rgba(248, 245, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-box h4 {
    color: #7c3aed;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    color: #6b7280;
    font-size: 0.95rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

