/* Coming Soon Page Styles */
* {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00AD4B 0%, #86B84D 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.coming-soon-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Logo Section */
.logo-section {
    margin-bottom: 30px;
}

.app-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Platform Icon */
.platform-icon {
    font-size: 80px;
    color: white;
    margin-bottom: 20px;
}

.platform-icon i {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00AD4B;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.platform-name {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 600;
}

.description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.description p {
    margin-bottom: 15px;
}

/* Launch Info */
.launch-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #00AD4B 0%, #86B84D 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 173, 75, 0.3);
}

.launch-icon {
    font-size: 3rem;
    color: white;
}

.launch-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
}

.launch-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launch-date {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 5px;
}

.launch-note {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 5px;
    font-weight: 400;
    font-style: italic;
}

/* Features Preview */
.features-preview {
    margin-bottom: 40px;
}

.features-preview h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #00AD4B;
}

.feature-item span {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
    text-align: center;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 10px;
}

.btn-back,
.btn-notify {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 auto;
    max-width: 250px;
    min-width: 140px;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
    cursor: pointer;
}

.btn-text {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-back {
    background: #6c757d;
    color: white;
}

.btn-back:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
    color: white;
}

.btn-notify {
    background: linear-gradient(135deg, #00AD4B 0%, #86B84D 100%);
    color: white;
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 173, 75, 0.4);
    color: white;
}

/* Animated Background Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-shapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float-shapes {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }

    .platform-icon {
        font-size: 60px;
    }

    .main-content {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .launch-info {
        flex-direction: column;
        padding: 25px;
    }

    .launch-text {
        align-items: center;
    }

    .launch-date {
        font-size: 1.5rem;
    }

    .cta-section {
        flex-direction: row;
        gap: 10px;
        padding: 0;
        margin: 0 auto;
        max-width: 100%;
    }

    .btn-back,
    .btn-notify {
        flex: 1;
        max-width: none;
        min-width: 0;
        justify-content: center;
        padding: 13px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 15px 5px;
    }

    .coming-soon-title {
        font-size: 1.8rem;
    }

    .app-logo {
        max-width: 120px;
    }

    .platform-icon {
        font-size: 50px;
    }

    .main-content {
        padding: 25px 15px;
    }

    .description {
        font-size: 0.95rem;
    }

    .feature-item i {
        font-size: 2rem;
    }

    .cta-section {
        padding: 0;
        gap: 8px;
    }

    .btn-back,
    .btn-notify {
        padding: 12px 10px;
        font-size: 0.85rem;
        gap: 5px;
        min-width: 0;
    }

    .btn-back i,
    .btn-notify i {
        font-size: 0.8rem;
    }

    .btn-text {
        font-size: 0.85rem;
    }
}
