/* MotoPort - Coming Soon Page Styles */
/* Kumbh Sans Font [[memory:4284251]] */

:root {
    --primary-blue: #0095ff;
    --primary-red: #e63946;
    --accent-blue: #00b4ff;
    --dark-bg: #0a0a0f;
    --dark-secondary: #12121a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --gradient-blue: linear-gradient(135deg, #0095ff 0%, #00b4ff 100%);
    --gradient-red: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kumbh Sans', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-blue);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-red);
    bottom: -150px;
    left: -100px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Speed Lines Animation */
.speed-lines {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    animation: speedLine 3s ease-in-out infinite;
    opacity: 0.3;
}

.speed-line:nth-child(1) {
    top: -100px;
    width: 200px;
    animation-delay: 0s;
}

.speed-line:nth-child(2) {
    top: -50px;
    width: 300px;
    animation-delay: 0.5s;
}

.speed-line:nth-child(3) {
    top: 0;
    width: 250px;
    animation-delay: 1s;
}

.speed-line:nth-child(4) {
    top: 50px;
    width: 180px;
    animation-delay: 1.5s;
}

.speed-line:nth-child(5) {
    top: 100px;
    width: 220px;
    animation-delay: 2s;
}

@keyframes speedLine {
    0% {
        left: -300px;
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Main Container */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Logo */
.logo-wrapper {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 149, 255, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 50px rgba(0, 149, 255, 0.5));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content */
.content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 149, 255, 0.1);
    border: 1px solid rgba(0, 149, 255, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

/* Title */
.title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.highlight {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 40px;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--dark-secondary);
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 90px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 149, 255, 0.3);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.5;
}

/* Notify Section */
.notify-section {
    margin-bottom: 40px;
}

.notify-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-info {
    display: flex;
    justify-content: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 14px 28px;
    background: var(--gradient-blue);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 149, 255, 0.3);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 149, 255, 0.5);
}

.contact-link svg {
    flex-shrink: 0;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--text-primary);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0, 149, 255, 0.4);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 16px;
    }

    .logo {
        max-width: 300px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 15px 18px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .contact-link {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo-wrapper {
        margin-bottom: 30px;
    }

    .logo {
        max-width: 250px;
    }

    .badge {
        font-size: 10px;
        padding: 8px 18px;
    }

    .description {
        font-size: 1rem;
    }

    .countdown-item {
        padding: 12px 14px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-separator {
        display: none;
    }
}

/* Selection Color */
::selection {
    background: var(--primary-blue);
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}
