<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Neon Cyberpunk Style */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    padding: 40px;
    text-align: center;
}
a {
    color: #ff00ff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
a:hover {
    color: #ff44ff;
}
h1, h2 {
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
}
p {
    margin-bottom: 20px;
}

/* Header Styling */
header {
    background: #141414;
    color: #ff00ff;
    padding: 70px 25px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 4px;
}
header h1 {
    font-size: 3.5em;
}
header p {
    font-size: 1.8em;
    opacity: 0.7;
}

/* Section Styling */
section {
    background: #1a1a1a;
    padding: 50px;
    margin: 40px auto;
    width: 90%;
    max-width: 950px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
    text-align: left;
    border-left: 10px solid #ff00ff;
}
section h2 {
    color: #ff00ff;
    font-size: 2.2em;
}

/* Footer Styling */
footer {
    background: #141414;
    color: #ff00ff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
    margin-top: 60px;
}
footer a {
    font-weight: bold;
    margin: 0 18px;
    color: #ff00ff;
}
footer a:hover {
    text-decoration: underline;
    color: #ff44ff;
}

/* Glowing Button */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #ff00ff;
    color: #0a0a0a;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
}
.btn:hover {
    background: #ff44ff;
    box-shadow: 0 0 25px rgba(255, 0, 255, 1);
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}
.modal h2 {
    color: #ff00ff;
}
.modal button {
    background: #ff00ff;
    color: #0a0a0a;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.modal button:hover {
    background: #ff44ff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 25px;
    }
    header, footer {
        padding: 50px;
    }
    section {
        padding: 35px;
    }
}</pre></body></html>