body {
    background-color: #000;
    color: #FFA500; /* Bright orange */
    font-family: 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 20px;
    background-image: url('https://www.transparenttextures.com/patterns/noise.png');
    background-repeat: repeat;
}

h1, h2, h3 {
    font-family: 'Times New Roman', serif;
    font-size: 2.5em;
    text-shadow: 2px 2px 0 #FFA500, -2px -2px 0 #FFA500, 2px -2px 0 #FFA500, -2px 2px 0 #FFA500;
    margin-bottom: 20px;
}

a {
    color: #FFA500; /* Orange links */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF8C00; /* Darker orange on hover */
    text-shadow: 0 0 10px #FFA500, 0 0 20px #FFA500;
}

p {
    margin-bottom: 15px;
}

section {
    border: 2px dashed #FFA500;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 10px #FFA500;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 22%, 24%, 55% {
        opacity: 0.4;
    }
}

.flicker {
    animation: flicker 3s infinite;
}