/* Home Page Specific Styles */
.main-content {
    text-align: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.characters-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px 0;
    animation: float 3s ease-in-out infinite;
}

.main-title {
    font-size: 48px;
    margin: 30px 0 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 24px;
    color: #2c3e50;
    font-weight: bold;
    text-shadow: 1px 1px 6px #fff, 0 0 2px #e75480;
    background: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 14px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.play-btn {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.6s both, bounce 2s infinite;
}

.play-btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

/* Bottom Section */
.bottom-section {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
    margin-top: 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px 300px;
    gap: 30px;
}

.section-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out both;
}

.section-box:nth-child(1) {
    animation-delay: 0.2s;
}

.section-box:nth-child(2) {
    animation-delay: 0.4s;
}

.section-box:nth-child(3) {
    animation-delay: 0.6s;
}

.section-title {
    background-color: #2c3e50;
    color: white;
    padding: 10px;
    margin: -20px -20px 15px;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
}

.announcement-item,
.schedule-item,
.ranking-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-item:last-child,
.schedule-item:last-child,
.ranking-item:last-child {
    border-bottom: none;
}

.date-badge {
    background-color: #4CAF50;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.ranking-position {
    font-weight: bold;
    color: #2c3e50;
}

.ranking-name {
    flex-grow: 1;
    text-align: left;
    margin-left: 50px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.ranking-score {
    color: #666;
}

.sidebar-ads {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ad-banner {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    color: white;
    padding: 20px;
    min-height: 100px;
    height: 120px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-banner:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* Hover effects for ranking items */
.ranking-item:hover {
    background-color: #fde4ec;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background-color: #fde4ec;
    transform: translateX(3px);
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    padding: 30px 0;
    margin-top: 50px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: #4CAF50;
    font-size: 20px;
    font-weight: bold;
    gap: 10px;
}

.footer-logo img {
    max-height: 40px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-copyright {
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-title {
        font-size: 36px;
    }

    .characters-image {
        width: 100%;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-logo {
        font-size: 18px;
    }
}
