:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --secondary: #7C3AED;
    --accent: #10B981;
    --dark: #0F172A;
    --gray-800: #1E293B;
    --gray-600: #475569;
    --gray-400: #94A3B8;
    --gray-200: #E2E8F0;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    background: var(--light);
}

/* Background Elements */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -200px;
    animation: float 20s infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -200px;
    right: -200px;
    animation: float 25s infinite reverse;
}

.grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--gray-200) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

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

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Logo */
.logo-wrapper {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Content Card */
.content-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Typography */
h1 {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Notify Section */
.notify-section {
    max-width: 500px;
    margin: 0 auto 50px;
}

.notify-text {
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.input-group {
    display: flex;
    gap: 12px;
    background: white;
    border-radius: 60px;
    padding: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    margin-bottom: 12px;
}

.input-group input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.input-group input::placeholder {
    color: var(--gray-400);
}

.input-group button {
    padding: 12px 30px;
    border: none;
    background: var(--gradient);
    color: white;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.input-group button:hover {
    transform: translateX(-2px);
    box-shadow: 0 10px 20px -5px var(--primary);
}

.input-group button i {
    transition: transform 0.3s ease;
}

.input-group button:hover i {
    transform: translateX(5px);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.privacy-note i {
    font-size: 0.75rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
    text-align: left;
    border-top: 1px solid var(--gray-200);
    padding-top: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--gray-800);
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Social Section */
.social-section {
    text-align: center;
    margin-top: 20px;
}

.social-section p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 10px 20px -5px var(--primary);
}

/* Footer */
.footer {

    margin-top: 40px;
    
    color: var(--gray-500);
    font-size: 0.9rem;
   
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease 0.6s both;
}


.footer p{text-align: center;}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
    }
    
    .content-card {
        padding: 40px 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .input-group {
        flex-direction: column;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border: none;
    }
    
    .input-group input {
        background: white;
        border-radius: 60px;
        border: 1px solid var(--gray-200);
        padding: 16px 20px;
    }
    
    .input-group button {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
    
    .footer {
        flex-direction: column;
        gap: 12px;
    }
    
    .orb-1, .orb-2 {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .content-card {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .icon-circle {
        margin-bottom: 8px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .badge {
        font-size: 0.8rem;
    }
}