* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0c0c0c;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #f5f5f5;
}

.container {
    /* background: #1a1a1a; */
    background: #0c0c0c;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #ff9d00;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.mantra {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffd166;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #2a2a2a;
    border-radius: 10px;
    font-weight: 500;
}

.counter-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.circle-bg {
    fill: none;
    stroke: #333;
    stroke-width: 10;
}

.circle-progress {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 10;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.3s ease;
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff9d00;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-box {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 10px;
    min-width: 120px;
    margin: 5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff9d00;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 5px;
}

.jap-button {
    background: linear-gradient(145deg, #ff9500, #ffaa00);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-weight: bold;
}

.jap-button:hover {
    background: linear-gradient(145deg, #ffaa00, #ffbf00);
    transform: translateY(-2px);
}

.jap-button:active {
    transform: translateY(0);
}

.reset-button {
    background: linear-gradient(145deg, #ff3b30, #ff5e52);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-weight: bold;
}

.reset-button:hover {
    background: linear-gradient(145deg, #ff5e52, #ff7b70);
    transform: translateY(-2px);
}

.footer {
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .mantra {
        font-size: 1rem;
    }
    
    .counter-circle {
        width: 180px;
        height: 180px;
    }
    
    .circle-text {
        font-size: 2rem;
    }
}