body {
    background-color: #1A1A1A; /* Dark base */
    font-family: 'Consolas', monospace; /* Tech Code font */
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.header {
    padding: 20px;
    animation: neonGlow 1.5s infinite alternate; /* Pulsing light effect */
}

h1 {
    font-size: 4em;
    margin-bottom: 5px;
    letter-spacing: 8px;
    color: #00CCFF; /* Electric Blue */
    text-shadow: 0 0 10px #00CCFF, 0 0 20px #00FFFF;
}

h2 {
    font-size: 1.5em;
    font-weight: 400;
    color: #00FFFF;
}

.content {
    margin: 40px 20px;
    padding: 30px;
    border: 2px solid #00CCFF;
    box-shadow: 0 0 20px #00CCFF, inset 0 0 10px #00CCFF; /* Inner and outer glow */
    max-width: 600px;
    background: rgba(40, 40, 40, 0.6);
}

.tagline {
    font-style: normal;
    margin-bottom: 20px;
    color: #CCCCCC;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00CCFF;
    color: #1A1A1A; /* Dark text on bright button */
    text-decoration: none;
    font-weight: bold;
    border-radius: 0; /* Sharp, angular design */
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 15px;
    letter-spacing: 2px;
}

.button:hover {
    background-color: #00FFFF;
    transform: translateY(-2px); /* Slight lift effect */
}

.release-date {
    margin-top: 30px;
    font-size: 1.2em;
    color: #00CCFF;
}

.footer {
    clear: both;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #4D4D4D;
    text-align: center;
}

@keyframes neonGlow {
    from { text-shadow: 0 0 5px #00CCFF; }
    to { text-shadow: 0 0 15px #00FFFF; }
}

.qa-blog-section {
    padding: 50pxcf8 20px ;
    margin-top: 50px ;
    width: 100% ;
    max-width: 900px ;
}

.traffic-ticker{
    border-color: #00CCFF;
    background: rgba(0, 204, 255, 0.1);
    color: #00CCFF;
    margin: 20px  auto;
    padding: 10px ;
    border: 1px  solid;
    font-weight: bold;
    font-size: 1.1em ;
}

.question-block{
    margin-bottom: 30px ;
    padding: 15px ;
    border-left: 5px  solid;
    text-align: left;
}

.question-block h3{
    margin-top: 0 ;
    font-size: 1.5em ;
}
