* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(-45deg, #f5f5f5, #e0e0e0, #d0d0d0, #c0c0c0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.container {
    text-align: center;
    max-width: 700px;
    width: 90%;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.loading-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    animation: slideUp 1s ease-out;
}

.loading-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-container {
    margin-bottom: 3rem;
    position: relative;
}

.battery-container {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: batteryGlow 2s ease-in-out infinite alternate;
}

@keyframes batteryGlow {
    0% { 
        transform: scale(1);
    }
    100% { 
        transform: scale(1.02);
    }
}

.battery-indicator {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 30px;
    background: linear-gradient(145deg, #e0e0e0, #d0d0d0);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.battery-level {
    height: 100%;
    background: linear-gradient(90deg, #333, #555, #777);
    width: 0%;
    border-radius: 15px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    position: relative;
}

.battery-level::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: batteryShimmer 2s infinite;
}

@keyframes batteryShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.brand-name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #333, #555, #777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

@keyframes textGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.1) drop-shadow(0 0 20px rgba(0, 0, 0, 0.5)); }
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #666;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: slideIn 1s ease-out 0.8s both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-message {
    font-weight: 500;
    color: #333;
}

.percentage {
    font-weight: 700;
    color: #333;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.coming-soon {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    animation: slideUp 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: slideRight 3s infinite;
}

@keyframes slideRight {
    0% { left: -100%; }
    100% { left: 100%; }
}

.coming-soon h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
    background: linear-gradient(135deg, #333, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon p {
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid #333;
    border-radius: 30px;
    transition: all 0.4s ease;
    font-size: 1rem;
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.05));
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.social-link:hover {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.social-link:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .loading-section {
        padding: 3rem 2rem;
    }
    
    .brand-name {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    
    .battery-container {
        width: 160px;
        height: 80px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 180px;
        text-align: center;
    }
}

.esperala {
    font-size: 1.5em;
}

.small-text {
    font-size: 0.7em;
} 