/* Color Palette & Basic Setup */
:root {
    /* The Kneesock Stripes */
    --stripe-dark: #1e1e24;
    --stripe-light: #f4f4f6;
    
    /* The Accents */
    --pink-accent: #ff7ebb;
    --blue-accent: #55cdfc;
    
    /* The Content Box */
    --container-bg: #111113; 
    --text-color: #eaeaea;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* This creates the thick horizontal stripes across the whole background */
    background: repeating-linear-gradient(
        to bottom,
        var(--stripe-dark),
        var(--stripe-dark) 50px,
        var(--stripe-light) 50px,
        var(--stripe-light) 100px
    );
    color: var(--text-color);
    margin: 0;
    padding: 30px 15px; 
    line-height: 1.6;
    min-height: 100vh;
}

/* The solid dark box that holds your text so it's easy to read */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--container-bg);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    opacity: 0.95; /* Makes the container slightly transparent */
    /* Frame the entire container in pink */
    border: 3px solid var(--pink-accent); 
}

/* Banner Image */
.banner {
    width: 100%;
    height: 250px;
    background-color: #222;
    background-image: url('twitterbannercroppednolew.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 25px;
    /* Frame the banner in light blue */
    border: 2px solid var(--blue-accent); 
}

/* Introduction Blurb */
.blurb {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}
.blurb h1 {
    color: var(--pink-accent);
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.blurb p {
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Linktree-Style Buttons */
.links-section {
    margin-bottom: 50px;
}
.link-card {
    background: #1a1a1e;
    border: 1px solid #333;
    border-left: 6px solid var(--pink-accent);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    text-decoration: none;
    color: var(--text-color);
    display: block;
    transition: all 0.3s ease;
}

/* When hovering, the button shifts slightly and turns light blue */
.link-card:hover {
    transform: translateY(-2px) translateX(6px);
    border-color: var(--blue-accent);
    border-left: 6px solid var(--blue-accent);
    background: #25252a;
    box-shadow: -4px 4px 15px rgba(85, 205, 252, 0.15);
}
.link-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff; 
    margin-bottom: 5px;
}
.link-desc {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* QR Code Style */
.qr-code {
    display: block;
    max-width: 200px;
    margin: 15px auto 0;
    border-radius: 8px;
}

/* Project Updates Section */
.updates-section {
    background: #1a1a1e;
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid var(--blue-accent);
}
.updates-section h2 {
    margin-top: 0;
    color: var(--pink-accent);
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.update-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #444;
}
.update-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.update-date {
    font-size: 0.85rem;
    color: var(--blue-accent);
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Back Link for internal pages */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--pink-accent);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
.back-link:hover {
    color: var(--blue-accent);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    body { padding: 15px 10px; }
    .banner { height: 150px; }
    .container { padding: 20px; border-width: 2px; }
    .blurb h1 { font-size: 1.8rem; }
}