/* Basic 90s styling */
body {
    background-color: #000000;  /* Change to black background */
    color: #00FF00;
    font-family: "Comic Sans MS", "Arial", sans-serif;
    margin: 0;
    padding: 0;
}

/* Cat background */
.cat-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExZWh3M3V2OHVzbXVhczdpcTJ4M3NrdnB2OGVjcTFveHp5eHNsZG1xciZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/BSx6mzbW1ew7K/giphy.gif') repeat;
    
    z-index: -1;
    pointer-events: none;
    background-size: 200px auto;
}

/* Link styles - removed borders */
a:link {
    color: #00FFFF;
    text-decoration: none;
    border: none;
}

a:visited {
    color: #FF00FF;
    border: none;
}

a:hover {
    color: #FFFF00;
    text-decoration: underline;
    border: none;
}

a:active {
    color: #FF0000;
    border: none;
}

/* Make sure images don't have borders unless specified */
img {
    border: 0;
}

img[border="1"] {
    border: 1px solid #FF00FF;
}

/* Blinking text support */
blink {
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Table borders */
table {
    border-collapse: separate;
    border-spacing: 2px;
}

/* Table cells */
td {
    font-family: "Comic Sans MS", "Arial", sans-serif;
    padding: 4px;
}

/* Project images */
td img {
    
    margin: 5px 0;
}

/* Horizontal rules */
hr {
    border: 0;
    border-top: 1px solid #FF00FF;
    margin: 10px 0;
}

hr[noshade] {
    border-top: 2px solid #FF00FF;
}

/* Lists */
ul {
    list-style-type: square;
    color: #FFFF00;
}

/* Social links table - removed borders */
table[cellpadding="5"] a {
    padding: 5px 10px;
    display: inline-block;
    min-width: 80px;
    text-align: center;
    border: none;
}

table[cellpadding="5"] a:hover {
    background-color: #000066;
}

/* Retro Website Styles */
:root {
    --retro-bg: #000080;  /* Classic Windows blue */
    --retro-text: #ffffff;
    --retro-accent: #00ff00;  /* Classic terminal green */
    --retro-link: #ffff00;    /* Bright yellow */
    --retro-border: #ff00ff;  /* Hot pink */
    --retro-shadow: #00ffff;  /* Cyan */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Press Start 2P', 'VT323', monospace;
    color: var(--retro-text);
    
    line-height: 1.6;
    cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur116.cur'), auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    border: 4px double var(--retro-border);
    background: rgba(0, 0, 0, 0.5);
}

.blink {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--retro-accent);
    animation: blinker 1s step-end infinite;
}

.subtitle {
    font-size: 1rem;
    color: var(--retro-shadow);
    margin-top: 1rem;
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* Navigation */
.cool-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.glow-button {
    padding: 1rem 2rem;
    background: #000;
    color: var(--retro-accent);
    text-decoration: none;
    border: 2px solid var(--retro-accent);
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.glow-button:hover {
    background: var(--retro-accent);
    color: #000;
}

/* Status Section */
.status-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    border: 2px solid var(--retro-border);
    background: rgba(0, 0, 0, 0.5);
}

.status-box {
    padding: 1rem;
    border: 2px solid var(--retro-accent);
}

.status-title {
    color: var(--retro-accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.status-content {
    color: var(--retro-text);
}

.status-content a {
    color: var(--retro-link);
    text-decoration: none;
    margin-right: 1rem;
}

.status-content a:hover {
    text-decoration: underline;
}

/* Project Cards */
.retro-heading {
    text-align: center;
    color: var(--retro-shadow);
    font-size: 1.5rem;
    margin: 3rem 0;
    text-transform: uppercase;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #000;
    border: 2px solid var(--retro-border);
    padding: 1.5rem;
    position: relative;
}

.project-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--retro-accent);
    color: #000;
    padding: 0.5rem;
    font-size: 0.8rem;
}

.project-card h3 {
    color: var(--retro-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.project-card img {
    width: 100%;
    height: auto;
    border: 2px solid var(--retro-border);
    margin: 1rem 0;
}

.project-card p {
    color: var(--retro-text);
    font-size: 0.8rem;
    margin: 1rem 0;
}

.visit-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #000;
    color: var(--retro-accent);
    text-decoration: none;
    border: 2px solid var(--retro-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.visit-button:hover {
    background: var(--retro-accent);
    color: #000;
}

/* Skills Section */
.skills-section {
    background: #000;
    border: 2px solid var(--retro-border);
    padding: 2rem;
    margin: 2rem 0;
}

.skill-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-category h3 {
    color: var(--retro-shadow);
    margin-bottom: 1rem;
    font-size: 1rem;
    border-bottom: 2px solid var(--retro-border);
    padding-bottom: 0.5rem;
}

.skill-category ul {
    list-style: none;
    padding: 0;
}

.skill-category li {
    color: var(--retro-text);
    margin: 0.8rem 0;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-button {
    padding: 1rem 2rem;
    background: #000;
    color: var(--retro-link);
    text-decoration: none;
    border: 2px solid var(--retro-link);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.contact-button:hover {
    background: var(--retro-link);
    color: #000;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    border-top: 4px double var(--retro-border);
}

.footer-text {
    font-size: 0.8rem;
    color: var(--retro-text);
}

.divider {
    margin: 0 1rem;
    color: var(--retro-border);
}

/* Top Marquee */
.top-marquee {
    background: #000;
    color: var(--retro-accent);
    padding: 0.5rem;
    font-size: 0.8rem;
    border-bottom: 2px solid var(--retro-border);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .blink {
        font-size: 1.8rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .skill-lists {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
        text-align: center;
    }
} 