/* CSS Kapsülleme (Temanın bozmasını engellemek için) */
#biz-uc-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#biz-uc-wrapper {
    font-family: 'Poppins', sans-serif;
}

#biz-uc-wrapper {
    background-color: #f4f7f9; 
    color: #2d3748; 
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

#biz-uc-wrapper .bg-animation {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(75, 123, 176, 0.1) 0%, rgba(72, 155, 160, 0.05) 30%, transparent 60%);
    z-index: 0;
    animation: biz-pulse 15s infinite alternate ease-in-out;
}

@keyframes biz-pulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(5%, 5%); }
}

#biz-uc-wrapper .container {
    width: 90%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

#biz-uc-wrapper .logo-img {
    max-width: 250px;
    height: auto;
    margin-bottom: 2rem;
}

#biz-uc-wrapper h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
    line-height: 1.2;
}

#biz-uc-wrapper h1 span {
    background: linear-gradient(135deg, #4b7bb0, #489ba0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#biz-uc-wrapper .content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#biz-uc-wrapper .countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

#biz-uc-wrapper .time-box {
    background: #ffffff;
    border: 1px solid rgba(75, 123, 176, 0.15);
    padding: 1.5rem;
    border-radius: 16px;
    min-width: 100px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

#biz-uc-wrapper .time-box span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4b7bb0;
    display: block;
    line-height: 1.2;
}

#biz-uc-wrapper .time-box p {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

#biz-uc-wrapper .subscribe-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 1rem auto;
}

#biz-uc-wrapper .subscribe-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #cbd5e0;
    background: #ffffff;
    color: #2d3748;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

#biz-uc-wrapper .subscribe-form input:focus {
    border-color: #489ba0;
    box-shadow: 0 0 0 3px rgba(72, 155, 160, 0.2);
}

#biz-uc-wrapper .subscribe-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #4b7bb0, #489ba0);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#biz-uc-wrapper .subscribe-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(72, 155, 160, 0.3);
}

#biz-uc-wrapper .form-message {
    font-size: 0.95rem;
    min-height: 20px;
    margin-bottom: 2rem;
    font-weight: 500;
}

#biz-uc-wrapper .success-msg { color: #38a169; }
#biz-uc-wrapper .error-msg { color: #e53e3e; }

#biz-uc-wrapper .footer {
    margin-top: 3rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

#biz-uc-wrapper .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

#biz-uc-wrapper .social-links a {
    color: #a0aec0;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

#biz-uc-wrapper .social-links a:hover {
    color: #4b7bb0;
    transform: scale(1.2);
}

#biz-uc-wrapper .company-info {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #4a5568;
}

#biz-uc-wrapper .company-info p {
    margin-bottom: 0.2rem;
}

#biz-uc-wrapper .company-info i {
    color: #489ba0;
    margin-right: 5px;
}

#biz-uc-wrapper .copyright {
    font-size: 0.8rem;
    color: #a0aec0;
}

@media (max-width: 768px) {
    #biz-uc-wrapper h1 { font-size: 2.2rem; }
    #biz-uc-wrapper .countdown { gap: 0.5rem; flex-wrap: wrap; }
    #biz-uc-wrapper .time-box { min-width: 80px; padding: 1rem; }
    #biz-uc-wrapper .time-box span { font-size: 2rem; }
    #biz-uc-wrapper .subscribe-form { flex-direction: column; }
    #biz-uc-wrapper .subscribe-form button { width: 100%; }
    #biz-uc-wrapper .container { padding: 2rem 1.5rem; width: 95%; }
    #biz-uc-wrapper .logo-img { max-width: 200px; }
}
