* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000000;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 174, 0, 0.1), rgba(4, 125, 250, 0.1));
    animation: float 20s infinite ease-in-out;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 7s;
}

.element-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 70%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translateY(30px) rotate(240deg);
        opacity: 0.3;
    }
}

.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 100;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
    transition: color 0.3s ease;
}

.logo a:hover h1 {
    color: #047DFA;
}

.back-button {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-2px);
}

.download-container {
    position: relative;
    z-index: 10;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.icon-container {
    margin-bottom: 30px;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000, #000000);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 3s infinite ease-in-out;
}

.app-icon svg {
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #00ccff, #047DFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.5;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 174, 0, 0.1);
    border: 1px solid rgba(255, 174, 0, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #FFAE00;
    border-radius: 50%;
    animation: dot-pulse 2s infinite ease-in-out;
}

@keyframes dot-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.feature-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon {
    margin-bottom: 40px;
}

.coming-soon p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-weight: 500;
}

.notify-input {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    border-color: #047dfa;
    background: rgba(255, 255, 255, 0.15);
}

.notify-btn {
    background: linear-gradient(135deg, #00ccff, #047dfa);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgb(4, 125, 250);
}

.platforms p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-3px);
}

.platform-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.platform-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@media (max-width: 768px) {
    .logo {
        top: 20px;
        left: 20px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .back-button {
        top: 20px;
        right: 20px;
    }

    .download-card {
        padding: 30px 20px;
        margin: 80px 0 20px;
    }

    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 14px;
    }

    .notify-input {
        flex-direction: column;
    }

    .platform-icons {
        gap: 20px;
    }

    .feature-item {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .download-container {
        width: 95%;
    }

    .download-card {
        padding: 25px 15px;
    }

    .title {
        font-size: 24px;
    }

    .app-icon {
        width: 60px;
        height: 60px;
    }

    .app-icon svg {
        width: 40px;
        height: 40px;
    }
}