/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af; /* Deep royal blue */
    --primary-hover: #1d4ed8;
    --accent-color: #0ea5e9; /* Light cyan/blue */
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-gradient-start: #e0f2fe;
    --bg-gradient-end: #f3e8ff;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --card-border: rgba(255, 255, 255, 0.6);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
}

/* Background Decorative Elements */
.background-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.3); /* Accent color */
    top: -100px;
    right: -100px;
    animation: float-slow 15s infinite alternate ease-in-out;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: rgba(147, 51, 234, 0.2); /* Purple color */
    bottom: -150px;
    left: -150px;
    animation: float-slow 20s infinite alternate-reverse ease-in-out;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

/* Main Container & Card */
.container {
    width: 100%;
    max-width: 540px;
    z-index: 1;
    animation: scaleUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: var(--card-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Logo Design */
.logo-container {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.logo {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* Typography & Content */
.card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.badge {
    align-self: center;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-header h1 {
    font-size: 2.2rem;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 10px;
}

/* Button & Action Area */
.action-area {
    width: 100%;
    margin-top: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.35);
    background: linear-gradient(135deg, var(--primary-hover) 0%, #1d4ed8 100%);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.2);
}

.arrow-icon {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

/* Footer */
.card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    padding-top: 24px;
}

.card-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .card {
        padding: 36px 24px;
        gap: 24px;
    }
    
    .card-header h1 {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .btn-primary {
        padding: 16px 24px;
        font-size: 1rem;
    }
}
