body {
    margin: 0;
    font-family: "Georgia", serif;
    background: url('img/btswallpaper.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #222;
}

/* Header */
header {
    background: rgba(183, 208, 232, 0.25);
        /* same blue family, transparent */
        padding: 10px 20px;
        text-align: left;
    
        /* glass effect */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        /* Safari */
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

header a {
    background: #AAB6c3;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #000;
    font-style: italic;
}

/* Section card style */
.card {
    background: rgba(74, 124, 177, 0.25);
        /*  blue but transparent */
        border-radius: 30px;
        padding: 30px;
        margin: 40px auto;
        width: 80%;
        max-width: 900px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    
        /* glass effect */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        
        border: 1px solid rgba(255, 255, 255, 0.3);
    
}

/* Welcome section */
.welcome img {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    border: 3px solid #6d64d500;
    object-fit: cover;
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
}

.welcome-text {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    max-width: 500px;
}

.welcome-text p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.links a {
    background: rgba(159, 180, 177, 0.4);
    /*  color but semi-transparent */
    padding: 12px;
    border-radius: 15px;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    text-align: center;
    display: block;
    position: relative;
    /* needed for shine effect */
    overflow: hidden;
    /* so shine stays inside */
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* shiny sweep */
.links a::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.6) 0%,
            rgba(255, 255, 255, 0) 60%);
    transform: rotate(25deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.links a:hover::before {
    transform: rotate(25deg) translateX(100%);
}

.links a:hover {
    background: rgba(176, 184, 176, 0.5);
    /* a bit brighter */ }
.scroll-note {
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
    text-align: center;
}

/* Meme section */
.meme-section h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.meme-section img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background: #b7d0e8;
    object-fit: cover;
}

.personality img {
        width: 300px;
        height: 300px;
        border-radius: 20px;
        background: #b7d0e800;
        object-fit: cover;
        margin: 10px;
    
}