@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Unbounded', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}
.section-title {
    font-family: 'Unbounded', sans-serif;
    color:white;
    font-size: 3em;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff00ff, #00ffaa);
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}
.container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}
.top-header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4ecdc4;
    text-decoration: none;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}
.nav-menu a:hover {
    color: #4ecdc4;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.social-links a:hover {
    transform: scale(1.2);
}
.header {
    text-align: center;
    margin: 50px 0;
    animation: slideDown 1s ease-out;
}
@keyframes slideDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.main-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.subtitle {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 10px;
}
.age-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}
.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}
@keyframes fadeInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.card-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}
.card-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
}
.stats-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.stat {
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #4ecdc4;
    display: block;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}
.achievement {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.fan-counter {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.counter-display {
    font-size: 3rem;
    color: #4ecdc4;
    font-weight: bold;
    margin: 10px 0;
}
.like-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}
.like-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.6);
}
.like-button:active {
    transform: translateY(0);
}
.music-player {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}
.track-info {
    color: white;
    text-align: center;
    margin-bottom: 15px;
}
.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}
.heart {
    position: absolute;
    color: #ff6b6b;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    opacity: 0;
}
@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    margin-top: 80px;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.footer-title {
    font-size: 2rem;
    color: #4ecdc4;
    margin-bottom: 20px;
    font-weight: bold;
}
.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.footer-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.footer-stat {
    text-align: center;
}
.footer-stat-number {
    font-size: 1.5rem;
    color: #ff6b6b;
    font-weight: bold;
    display: block;
}
.footer-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}
.footer-social-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}
.footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.footer-powered {
    margin-top: 15px;
    font-size: 0.85em;
    font-family: 'Unbounded', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.footer-powered i {
    color: #00ffaa;
    font-size: 1em;
}
.footer-powered a {
    color: #00ffaa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-powered a:hover {
    color: #00e6cc;
}
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .footer-stats {
        flex-direction: column;
        gap: 20px;
    }
    .footer-socials {
        flex-wrap: wrap;
    }
}