* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 90%;
}

h1 {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    margin-bottom: 2rem;
}

.gift-card {
    margin: 2rem 0;
}

.gift-card img {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
}

.gift-card h2 {
    color: #ff9900;
    text-shadow: 0 0 10px #ff9900;
}

.counter-container {
    margin: 2rem 0;
}

.counter {
    font-size: 4rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

.hurry-text {
    color: #ff0000;
    font-size: 1.5rem;
    margin-top: 1rem;
    text-shadow: 0 0 10px #ff0000;
}

.neon-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    color: #00ff00;
    background-color: transparent;
    border: 2px solid #00ff00;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #00ff00;
}

.neon-button:hover {
    background-color: #00ff00;
    color: #000000;
    box-shadow: 0 0 20px #00ff00;
} 