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

body {
    background-color: #000000;
    color: #ff0000;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.clock {
    font-size: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    border: 2px solid #ff0000;
    border-radius: 10px;
    background-color: rgba(255, 0, 0, 0.1);
}

#timer span {
    font-weight: bold;
    font-size: 2.5rem;
}

nav {
    margin: 2rem 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

nav a {
    color: #ff0000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #ff0000;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #ff0000;
    color: #000000;
}

.quote {
    margin-top: 2rem;
    font-style: italic;
}

.quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.share-buttons {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-button {
    background: none;
    border: 1px solid #ff0000;
    color: #ff0000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-button:hover {
    background-color: #ff0000;
    color: #000000;
}

.share-button i {
    font-size: 1.2rem;
}

/* Hit Counter Styles */
.hit-counter-container {
    margin: 2rem auto;
    text-align: center;
    font-family: 'Courier New', monospace;
}

.hit-counter {
    display: inline-flex;
    background: #000;
    padding: 5px;
    border: 2px solid #ff0000;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.counter-digit {
    display: inline-block;
    background: #300;
    color: #f00;
    font-family: 'Digital', 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 3px 6px;
    margin: 0 1px;
    border: 1px solid #600;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.7);
}

.hit-counter-label {
    display: block;
    color: #ff0000;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .clock {
        font-size: 1.5rem;
    }
    
    #timer span {
        font-size: 2rem;
    }
    
    nav ul {
        flex-direction: column;
    }
}
