* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background: linear-gradient(135deg, #ffffff, #f5f9ff);
    color: #2d3748;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 82, 204, 0.08);
    border: 1px solid rgba(0, 82, 204, 0.1);
}

.profile-section {
    margin-bottom: 2rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(0, 82, 204, 0.2);
    object-fit: cover;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #0052cc, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.bio {
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 82, 204, 0.1);
    box-shadow: 0 4px 16px rgba(0, 82, 204, 0.05);
}

.countdown-item:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(0, 82, 204, 0.2);
    box-shadow: 0 8px 24px rgba(0, 82, 204, 0.1);
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0052cc;
}

.countdown-item .label {
    font-size: 0.9rem;
    color: #4a5568;
    margin-top: 0.5rem;
}

.target-date {
    color: #4a5568;
    font-size: 1.1rem;
}

.linkedin-link {
    color: #0052cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: #0077ff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .countdown-container {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }

    .countdown-item span:first-child {
        font-size: 2rem;
    }

    .content {
        padding: 2rem 1rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 0.8rem;
    }

    .countdown-item span:first-child {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }
} 