* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 25%, #0f0f0f 50%, #1e1e1e 75%, #121212 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.construction-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.content-wrapper {
    max-width: 1200px;
    width: 90%;
    text-align: center;
    padding: 2rem;
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo-placeholder {
    position: relative;
    display: inline-block;
}

.logo-img {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: none;
}

.logo-img.loaded {
    display: block;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(255, 255, 255, 0.2);
}

.logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2d2d2d, #404040);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-fallback.hidden {
    display: none;
}

.logo-fallback:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(255, 255, 255, 0.2);
}

.logo-fallback i {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.logo-fallback span {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

/* Main Content */
.main-content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.subtitle {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    display: block;
}

.feature-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Progress Section */
.progress-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.progress-text {
    color: #b0b0b0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
    border-radius: 10px;
    width: 75%;
    animation: progressAnimation 2s ease-out;
}

.progress-percentage {
    color: #4ecdc4;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1.2s both;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    color: #4ecdc4;
    font-size: 1.3rem;
}

/* Coming Soon / Countdown */
.coming-soon {
    animation: fadeInUp 1s ease-out 1.5s both;
}

.coming-soon p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.05);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.countdown-label {
    color: #b0b0b0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 600px;
    height: 600px;
    bottom: -300px;
    right: -300px;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(78, 205, 196, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes progressAnimation {
    from {
        width: 0%;
    }
    to {
        width: 75%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        width: 95%;
        padding: 1rem;
    }

    .logo-img,
    .logo-fallback {
        width: 150px;
        height: 150px;
    }

    .logo-fallback i {
        font-size: 3rem;
    }

    .logo-fallback span {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }

    .feature-item i {
        font-size: 2rem;
    }

    .feature-item span {
        font-size: 1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1rem;
        min-width: 80px;
    }

    .countdown-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .countdown {
        flex-direction: column;
        align-items: center;
    }
}