:root {
    --bg-color: #0b0c10;
    --primary-color: #45f3ff;
    --secondary-color: #ff003c;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.stars, .twinkling {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    display: block;
    z-index: -1;
}

.stars {
    background: #000 url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/stars.png') repeat top center;
}

.twinkling {
    background: transparent url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1231630/twinkling.png') repeat top center;
    animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

#explosion-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Container & Layout */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.glass-panel {
   background: rgb(0 0 0 / 57%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(69, 243, 255, 0.1);
}

/* Header & Glitch Effect */
.neon-header {
    text-align: center;
    padding: 60px 0 40px;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(69, 243, 255, 0.8),
                 0 0 20px rgba(69, 243, 255, 0.5),
                 0 0 40px rgba(69, 243, 255, 0.3);
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 46px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

.neon-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-top: 10px;
    letter-spacing: 2px;
}

.year {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
    font-weight: 900;
}

.neon-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
    text-shadow: 0 0 5px var(--primary-color);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { text-shadow: 0 0 5px var(--primary-color); }
    50% { text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
    100% { text-shadow: 0 0 5px var(--primary-color); }
}

/* Typography & Content Section */
.content h4 {
    color: var(--secondary-color);
    font-family: 'Orbitron', sans-serif;
    margin: 20px 0 10px;
    text-transform: uppercase;
}

.content p, .content ul {
    margin-bottom: 15px;
    font-weight: 300;
}

.content ul {
    list-style-position: inside;
    padding-left: 10px;
}

.content li {
    margin-bottom: 8px;
}

.neon-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.neon-link:hover {
    text-shadow: 0 0 10px var(--primary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #ccc;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.neon-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.neon-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(69, 243, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.neon-input.readonly {
    background: rgba(0, 0, 0, 0.3);
    color: #888;
    cursor: not-allowed;
}

.col-2 {
    display: flex;
    gap: 20px;
}

.half {
    flex: 1;
}

select.neon-input option {
    background: var(--bg-color);
    color: #fff;
}

textarea.neon-input {
    resize: vertical;
}

.neon-file-input {
    width: 100%;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px dashed var(--primary-color);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

.file-hint {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

/* Button */
.form-actions {
    text-align: center;
    margin-top: 40px;
}

.neon-button {
    position: relative;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.5s;
    outline: none;
}

.neon-button:hover {
    color: var(--bg-color);
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color),
                0 0 40px var(--primary-color);
}

.neon-button span {
    position: relative;
    z-index: 1;
}

.neon-button i {
    position: absolute;
    inset: 0;
    display: block;
}

.neon-button i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80%;
    width: 10px;
    height: 4px;
    background: var(--bg-color);
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}

.neon-button:hover i::before {
    width: 20px;
    left: 20%;
}

.neon-button i::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 10px;
    height: 4px;
    background: var(--bg-color);
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}

.neon-button:hover i::after {
    width: 20px;
    left: 80%;
}

p{
    text-align: justify;
}

li{
    text-align: justify;
}

/* Report Table Styles */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

.neon-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    color: #fff;
    font-size: 0.9rem;
}

.neon-table th, .neon-table td {
    padding: 12px 15px;
    border: 1px solid var(--glass-border);
    text-align: left;
}

.neon-table th {
    background: rgba(69, 243, 255, 0.1);
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--primary-color);
}

.neon-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.neon-table tr:hover {
    background: rgba(69, 243, 255, 0.05);
}

.action-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.action-link:hover {
    background: var(--secondary-color);
    color: var(--bg-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .glitch { font-size: 2.5rem; }
    .neon-text { font-size: 1.2rem; }
    .col-2 { flex-direction: column; gap: 0; }
}
