/* splash-screen.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.splash-active {
    overflow: hidden;
}

.splash-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.5s 3s forwards;
}

.logo-container {
    position: relative;
    width: 300px;
    height: 150px;
    margin-bottom: 2rem;
}

.mycom-text {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #4f46e5, #9333ea, #db2777);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

.gradient-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.8) 0%, rgba(79, 70, 229, 0) 70%);
    filter: blur(30px);
    animation: pulse 4s infinite alternate;
    z-index: -1;
}

.gradient-circle:nth-child(2) {
    background: radial-gradient(circle, rgba(147, 51, 234, 0.6) 0%, rgba(147, 51, 234, 0) 70%);
    animation-delay: 0.5s;
    width: 250px;
    height: 250px;
}

.gradient-circle:nth-child(3) {
    background: radial-gradient(circle, rgba(219, 39, 119, 0.4) 0%, rgba(219, 39, 119, 0) 70%);
    animation-delay: 1s;
    width: 200px;
    height: 200px;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 2rem;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4f46e5, #9333ea, #db2777);
    border-radius: 2px;
    animation: load 3s ease-in-out forwards;
}

.tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.2rem;
    opacity: 0;
    animation: fadeIn 0.5s 1s forwards;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #4f46e5, #9333ea, #db2777);
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0;
    animation: particle-float 4s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
}

@keyframes load {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; visibility: hidden; }
}

@keyframes particle-float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}