:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --accent-hover: #2980b9;
    --bg-gradient-start: #fdfbfb;
    --bg-gradient-end: #ebedee;
    --text-color: #333;
    --shape-color-1: rgba(52, 152, 219, 0.1);
    --shape-color-2: rgba(46, 204, 113, 0.1);
    --shape-color-3: rgba(155, 89, 182, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    height: 100vh;
    overflow: hidden;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.5);
    animation: fadeInUp 1s ease-out;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #555;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

/* Background Animation */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--shape-color-1);
    top: -50px;
    left: -50px;
    animation-duration: 25s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--shape-color-2);
    bottom: 10%;
    right: -50px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--shape-color-3);
    top: 40%;
    left: 10%;
    animation-duration: 15s;
    animation-delay: -2s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    background: var(--shape-color-1);
    top: 20%;
    right: 20%;
    animation-duration: 18s;
    animation-delay: -7s;
}

.shape-5 {
    width: 150px;
    height: 150px;
    background: var(--shape-color-3);
    bottom: -20px;
    left: 30%;
    animation-duration: 22s;
    animation-delay: -10s;
}

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

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

@media (max-width: 480px) {
    .title { font-size: 2rem; }
    .container { margin: 1rem; padding: 1.5rem; }
}
