* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #60d2cd 0%, #95d1f4 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.coming-soon-container {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(96, 210, 205, 0.15);
    border: 1px solid rgba(96, 210, 205, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    color: #0d7a75;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #60d2cd;
    font-size: 0.95rem;
}

.feature i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature:hover i {
    color: #0d7a75;
    transform: scale(1.1);
}

.newsletter-section {
    margin-bottom: 40px;
}

.newsletter-section h2 {
    font-size: 1.8rem;
    color: #0d7a75;
    margin-bottom: 10px;
}

.newsletter-section > p {
    color: #666;
    margin-bottom: 25px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(96, 210, 205, 0.2);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(96, 210, 205, 0.2);
}

.email-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.email-input:focus {
    background: rgba(96, 210, 205, 0.05);
}

.submit-btn {
    background: linear-gradient(135deg, #60d2cd 0%, #95d1f4 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(96, 210, 205, 0.4);
}

.submit-btn:active {
    transform: translateX(2px);
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: rgba(96, 210, 205, 0.1);
    color: #0d7a75;
    border: 1px solid rgba(96, 210, 205, 0.3);
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.privacy-note {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.privacy-note i {
    color: #60d2cd;
}

.contact-info {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #666;
}

.contact-info a {
    color: #60d2cd;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #60d2cd;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #60d2cd;
    color: white;
    transform: translateY(-3px);
}

/* Background decoration */
.background-decoration {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.background-decoration::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(149, 209, 244, 0.1) 0%, transparent 50%);
    animation: float 30s infinite ease-in-out;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        padding: 20px 0;
    }
    
    .coming-soon-container {
        padding: 20px 10px;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        display: flex;
        align-items: center;
    }
    
    .content {
        padding: 40px 20px;
        margin: auto;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .features-preview {
        gap: 20px;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .form-group {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
        border-radius: 0 0 10px 10px;
    }
    
    .email-input {
        border-radius: 10px 10px 0 0;
    }
}

/* Loading state for button */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading::after {
    content: "Wysyłanie...";
}