/* RESET EVERYTHING FIRST */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force remove all boxes and borders */
body, 
div, 
.container, 
.content, 
h1, 
h2, 
p, 
ul, 
li, 
img,
.status-bar {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

/* Body - full black background */
body {
    background: #000000;
    color: #8af;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    overflow-x: auto;
}

/* Matrix rain overlay - very subtle */
#matrix-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: -1;
}

/* Container - NO BOX, NO BORDER, NO BACKGROUND */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 40px 20px;
    min-height: 100vh;
}

/* Content area - centers content but no box */
.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Title with flickering name */
h1 {
    font-size: 3em;
    color: #8af;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    text-align: center;
    width: 100%;
    border-bottom: 2px dashed #0af !important; /* Only this border stays */
}

/* Make only "rockksta" flicker */
.flicker-name {
    color: #0af;
    text-shadow: 0 0 10px #0af;
    animation: flicker 2s linear infinite;
    position: relative;
    display: inline-block;
}

h2 {
    color: #0ff;
    font-size: 2em;
    margin: 40px 0 20px 0;
    text-shadow: 0 0 5px #0ff;
    padding-left: 20px;
    width: 100%;
    text-align: left;
}

p {
    color: #8af;
    margin: 20px 0;
    padding: 0 20px;
    line-height: 1.8;
    font-size: 1.1em;
    width: 100%;
    text-align: left;
}

a {
    color: #0f0;
    text-decoration: none;
    background: rgba(0, 30, 0, 0.3);
    padding: 3px 8px;
    border: 1px solid #0f0 !important; /* Only this border stays */
    font-weight: bold;
    transition: all 0.3s ease;
}

a:hover {
    background: rgba(0, 60, 0, 0.5);
    color: #8f8;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    transform: translateY(-2px);
}

ul {
    color: #8af;
    margin: 25px 20px;
    padding: 20px;
    background: rgba(0, 20, 40, 0.3) !important; /* Only this background stays */
    width: calc(100% - 40px);
    list-style-type: none;
}

li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    line-height: 1.7;
}

li::before {
    content: '>';
    color: #0f0;
    position: absolute;
    left: 10px;
    font-weight: bold;
    font-size: 1.3em;
}

img {
    display: block;
    max-width: 100%;
    margin: 40px auto;
    padding: 10px;
    background: rgba(0, 20, 40, 0.5) !important; /* Only this background stays */
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.2);
    max-width: 600px;
    width: 90%;
    border: 2px solid #0af !important; /* Only this border stays */
}

.blinking-cursor {
    animation: blink 1s step-end infinite;
    color: #0f0;
    font-weight: bold;
    font-size: 1.2em;
}

.status-bar {
    margin-top: 50px;
    padding: 20px;
    background: rgba(0, 20, 40, 0.5) !important; /* Only this background stays */
    text-align: center;
    color: #008;
    font-size: 1em;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
    border-top: 1px solid #00aaff33 !important; /* Only this border stays */
    border-bottom: 1px solid #00aaff33 !important; /* Only this border stays */
}

/* Animations */
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px #0af, 0 0 20px #0af;
    }
    20%, 24%, 55% {
        opacity: 0.4;
        text-shadow: 0 0 5px #0af;
    }
    22%, 53% {
        opacity: 0.8;
        text-shadow: 0 0 15px #0af, 0 0 25px #0af;
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

/* Add hover effects to list items */
li:hover {
    background: rgba(0, 40, 80, 0.2);
    padding-left: 35px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 10px;
    }
    
    h1 {
        font-size: 2.2em;
        letter-spacing: 2px;
        padding: 0 10px 15px 10px;
    }
    
    h2 {
        font-size: 1.6em;
        margin: 30px 0 15px 0;
        padding-left: 15px;
    }
    
    body {
        font-size: 15px;
    }
    
    ul {
        margin: 20px 10px;
        padding: 15px;
        width: calc(100% - 20px);
    }
    
    li {
        font-size: 1em;
        margin: 12px 0;
        padding-left: 25px;
    }
    
    img {
        margin: 30px auto;
        width: 95%;
    }
    
    .status-bar {
        padding: 15px;
        font-size: 0.9em;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
        letter-spacing: 1px;
    }
    
    h2 {
        font-size: 1.3em;
        padding-left: 10px;
    }
    
    p {
        padding: 0 15px;
        font-size: 1em;
    }
    
    ul {
        padding: 12px;
    }
    
    li {
        font-size: 0.95em;
        padding-left: 22px;
    }
    
    li::before {
        left: 5px;
    }
}