/* =================================================================
   COMING SOON - ADDITIONAL STYLES
================================================================= */

/* Coming Soon Background */
.coming-soon-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(52, 143, 80, 0.15) 0%, transparent 70%);
}

.crypto-constellation {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.constellation-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #56b4d3;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.blockchain-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(86, 180, 211, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(86, 180, 211, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridSlide 40s infinite linear;
    z-index: 1;
}

@keyframes gridSlide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: floatUp 25s infinite linear;
    pointer-events: none;
}

.float-element.btc { 
    color: #f7931a; 
    animation-delay: 0s;
    left: 10%;
}

.float-element.eth { 
    color: #627eea; 
    animation-delay: 4s;
    left: 20%;
}

.float-element.rocket { 
    animation-delay: 8s;
    left: 70%;
}

.float-element.diamond { 
    animation-delay: 12s;
    left: 80%;
}

.float-element.chart { 
    color: #00d4aa;
    animation-delay: 16s;
    left: 50%;
}

.float-element.gear { 
    color: #56b4d3;
    animation-delay: 20s;
    left: 30%;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(52, 143, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(86, 180, 211, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 2;
}

/* Coming Soon Container */
.coming-soon-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding-top: 100px;
}

/* Coming Soon Hero */
.coming-soon-hero {
    text-align: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Launch Status */
.launch-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 71, 87, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    color: #ff6b35;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.status-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.progress-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-bar {
    width: 300px;
    height: 8px;
    background: rgba(86, 180, 211, 0.1);
    border-radius: 4px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(86, 180, 211, 0.2);
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    width: 85%;
    animation: progressPulse 2s infinite;
}

@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(86, 180, 211, 0.5); }
    50% { box-shadow: 0 0 20px rgba(86, 180, 211, 0.8); }
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Main Heading */
.main-heading {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-line {
    color: var(--text-primary);
}

.title-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    padding-bottom: 15px;
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(135deg, #348f50 0%, #56b4d3 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
    50% { 
        background: linear-gradient(135deg, #56b4d3 0%, #348f50 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Countdown Timer */
.countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.countdown-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(86, 180, 211, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    color: #56b4d3;
    text-shadow: 0 0 20px rgba(86, 180, 211, 0.5);
    animation: countdownPulse 1s infinite;
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--text-secondary);
    opacity: 0.5;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 0.5; }
    51%, 100% { opacity: 0.1; }
}

.launch-date {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(52, 143, 80, 0.1);
    border: 1px solid rgba(52, 143, 80, 0.2);
    border-radius: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.launch-icon {
    font-size: 1.2rem;
}

/* Subscription Section */
.subscription-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscription-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.subscription-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.subscription-form {
    margin-bottom: 25px;
}

.email-input-group {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(86, 180, 211, 0.2);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.email-input-group:focus-within {
    border-color: rgba(86, 180, 211, 0.4);
    box-shadow: 0 0 0 4px rgba(86, 180, 211, 0.1);
}

.input-icon {
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 1.2rem;
    opacity: 0.7;
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.subscribe-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 143, 80, 0.4);
}

.btn-icon {
    font-size: 1.1rem;
}

.subscription-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.benefit-icon {
    font-size: 1.1rem;
}

.subscriber-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.count-icon {
    font-size: 1.1rem;
}

#subscriberCount {
    color: #56b4d3;
    font-weight: 600;
}

@keyframes glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.animation-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid #56b4d3;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.animation-rotate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border: 2px solid transparent;
    border-top: 2px solid #56b4d3;
    border-radius: 50%;
    animation: rotate 4s linear infinite;
}

.animation-bounce .feature-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.animation-shake .feature-icon {
    animation: shake 3s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.animation-lightning::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #56b4d3, transparent);
    animation: lightning 2s infinite;
}

@keyframes lightning {
    0%, 90%, 100% { opacity: 0; }
    5%, 85% { opacity: 1; }
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--bg-primary);
    border: 1px solid rgba(86, 180, 211, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: var(--primary-gradient);
    color: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px 25px;
}

.modal-body p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.modal-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(86, 180, 211, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
}

.modal-footer {
    padding: 0 25px 25px;
}

.modal-footer .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-hero {
        padding: 60px 15px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .progress-bar {
        width: 250px;
    }
    
    .countdown-timer {
        padding: 20px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .email-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .subscribe-btn {
        width: 100%;
        justify-content: center;
    }
    
    .subscription-benefits {
        gap: 20px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 5px;
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-title {
        font-size: 1.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .subscription-title {
        font-size: 1.5rem;
    }
    
    .community-title {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-footer {
        padding: 0 20px 20px;
    }
}