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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 24px 24px 0 0;
}

.circle-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
}

svg {
    width: 100%;
    height: 100%;
    display: block;
}

.center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.progress-bg {
    stroke: #e5e7eb;
    stroke-width: 12;
}

.progress-bar {
    stroke: url(#gradient);
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.5s ease;
}

.content {
    text-align: center;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

#currentDate {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 400;
    padding: 8px 16px;
    background: rgba(107, 114, 128, 0.1);
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 24px;
}

.company-breakdown {
    margin-bottom: 24px;
}

.company-breakdown p {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 12px;
}

.income {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.currency {
    background: rgba(103, 126, 234, 0.1);
    border: 1px solid rgba(103, 126, 234, 0.2);
    border-radius: 12px;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

@media (max-width: 480px) {
    .wrapper {
        padding: 24px;
        margin: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    .circle-container {
        width: 200px;
        height: 200px;
    }

    .center-image {
        width: 60px;
        height: 60px;
    }

    .income {
        font-size: 1.8rem;
    }
}