.clock-container {
    position: relative;
    margin: 0 auto 30px;
    width: 300px;
    height: 300px;
}

.analog-clock {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.clock-face {
    width: 100%;
    height: 100%;
    position: absolute;
}

.custom-page-title p {
    font-size: 1.125rem;
}

.number {
    position: absolute;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    transform: translate(-50%, -50%);
}

.number-12 { top: 15%; left: 50%; }
.number-3 { top: 50%; right: 15%; left: auto; transform: translateY(-50%); }
.number-6 { bottom: 15%; left: 50%; top: auto; transform: translateX(-50%); }
.number-9 { top: 50%; left: 15%; transform: translateY(-50%); }

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hand {
    position: absolute;
    background: #333;
    transform-origin: bottom center;
    bottom: 50%;
    left: 50%;
    border-radius: 10px;
    cursor: grab;
    transition: none;
}

.hand:active {
    cursor: grabbing;
}

.hour-hand {
    width: 8px;
    height: 80px;
    margin-left: -4px;
    background: #333;
    z-index: 3;
}

.minute-hand {
    width: 6px;
    height: 110px;
    margin-left: -3px;
    background: #666;
    z-index: 4;
}

.center-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.digital-clock {
    text-align: center;
    margin-bottom: 30px;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.time-text {
    text-align: center;
    margin-bottom: 20px;
}

.english-time {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 10px;
}

.hungarian-explanation {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    margin-bottom: 2rem;
}

.hungarian-explanation h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.hungarian-explanation p {
    color: #555;
    font-size: 1.125rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .clock-container {
        width: 250px;
        height: 250px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .digital-clock {
        font-size: 2rem;
    }

    .english-time {
        font-size: 1.5rem;
    }
}