body {
    margin: 0;
    padding: 0;
    
    font-family: Arial, sans-serif;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #000;
    color: #fff;
}
.full-container{
    background-color: black;
    height: 100vh;
}
.timer {
    font-family: monospace;
    font-size: 24px;
    color: #22d3ee;
    text-align: center;
    margin-bottom: -6px;
}

.speedometer {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.speed-display {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.current-speed {
    font-size: 48px;
    font-family: monospace;
    color: #22d3ee;
}

.speed-label {
    color: #9ca3af;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat-box {
    background: #111827;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-family: monospace;
    color: #22d3ee;
}

.stat-label {
    font-size: 12px;
    color: #9ca3af;
}

.stat-unit {
    font-size: 12px;
    color: #22d3ee;
}

.start-btn {
    width: 100%;
    background: #22d3ee;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    margin-top: 24px;
    cursor: pointer;
}

.start-btn:hover {
    background: #0891b2;
}
/* नया मॉडल स्टाइल */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: #1a1a1a;
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
}

.modal-title {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #22d3ee;
}

.result-text {
    font-size: 1.1em;
    margin: 10px 0;
    color: #fff;
}

.share-text {
    font-size: 0.9em;
    color: #666;
    margin: 15px 0;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    display: inline-block;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.ok-button {
    background-color: #22d3ee;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.ok-button:hover {
    background-color: #0891b2;
}