* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #5D4037;
    background: #FDF6E3;
    background-image: radial-gradient(#D7CCC8 1px, transparent 1px);
    background-size: 20px 20px;
    padding-top: 40px;
}

header {
    background: rgba(121, 85, 72, 0.95);
    color: #FFF8E1;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(93, 64, 55, 0.2);
    backdrop-filter: blur(10px);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #FFF8E1;
    font-family: 'Georgia', serif;
    z-index: 1001;
}

/* Mobile Menu/Navbar */
.mobileMenu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobileMenu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #FFF8E1;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navLinks {
    display: flex;
    list-style: none;
    gap: 32px;
}

.navLinks a {
    color: #FFF8E1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
}

.navLinks a:hover {
    background: rgba(255, 248, 225, 0.1);
    color: #FFE0B2;
    transform: translateY(-2px);
}

.navLinks a.activeLink {
    background: rgba(255, 248, 225, 0.2);
    color: #FFE0B2;
    border: 1px solid rgba(255, 248, 225, 0.3);
    font-weight: 600;
}

main {
    margin-top: 1px;
}

section {
    padding: 48px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.titlebox {
    text-align: center;
    background: linear-gradient(135deg, #8D6E63 0%, #A1887F 100%);
    color: #FFF8E1;
    border-radius: 15px;
    margin: 24px auto;
    padding: 80px 32px;
    box-shadow: 0 10px 30px rgba(141, 110, 99, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
}

.titlebox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='40' height='69.282' patternTransform='scale(1) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='%238d6e63ff'/><path d='M13.333-3.849v23.094M6.667-15.396l20 11.547M13.333-19.245l20 11.547M20 0v23.094m20-34.641l-6.667 3.849-6.666 3.849L20 0M0-11.547l6.667 3.849 6.666 3.849L20 0m0-23.094l20 11.547v23.094L20 23.094l-6.667-3.849-6.666-3.849L0 11.547v-23.094l6.667-3.849 6.666-3.849zM40-3.769L20 7.698m20-3.849l-16.253 9.384L20 15.396M6.667-7.698v23.094m6.666 50.037v23.094M6.667 53.886l20 11.547M13.333 50.037l20 11.547M20 69.282v23.094m20-34.641l-6.667 3.849-6.666 3.849L20 69.282M0 57.735l6.667 3.849 6.666 3.849L20 69.282m0-23.094l20 11.547v23.094L20 92.376l-6.667-3.849-6.666-3.849L0 80.829V57.735l6.667-3.849 6.666-3.849zm20 19.325L20 76.98m20-3.849L20 84.678M6.667 61.584v23.094m26.666-53.886v23.094m-6.666-34.641l20 11.547M33.333 15.396l20 11.547M40 34.641v23.094m20-34.641l-6.667 3.849-6.666 3.849L40 34.641M20 23.094l6.667 3.849 6.666 3.849L40 34.641m0-23.094l20 11.547v23.094L40 57.735l-6.667-3.849-6.666-3.849L20 46.188V23.094l6.667-3.849 6.666-3.849zm20 19.325L40 42.339m20-3.849L40 50.037M26.667 26.943v23.094M-6.667 30.792v23.094m-6.666-34.641l20 11.547M-6.667 15.396l20 11.547M0 34.641v23.094m20-34.641l-6.667 3.849-6.666 3.849L0 34.641m-20-11.547l6.667 3.849 6.666 3.849L0 34.641m0-23.094l20 11.547v23.094L0 57.735l-6.667-3.849-6.666-3.849L-20 46.188V23.094l6.667-3.849 6.666-3.849zm20 19.325L0 42.339m20-3.849L0 50.037m-13.333-23.094v23.094'  stroke-width='1' stroke='%23ecc7baff' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
    opacity: 0.1;
}

.titlebox h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.titlebox p {
    font-size: 19px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 11px 29px;
    border: 2px solid #8D6E63;
    background: #FFF8E1;
    color: #5D4037;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(141, 110, 99, 0.1);
}

.filter-btn.active,
.filter-btn:hover {
    background: #8D6E63;
    color: #FFF8E1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(141, 110, 99, 0.3);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 16px;
}

.showcase-item {
    background: #FFF8E1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(141, 110, 99, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #D7CCC8;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(141, 110, 99, 0.2);
}

.cardImage {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #A1887F, #BCAAA4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #FFF8E1;
    position: relative;
    overflow: hidden;
}

.cardImage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(93, 64, 55, 0.1);
}

.item-content {
    padding: 29px;
}

.item-content h3 {
    margin-bottom: 13px;
    color: #5D4037;
    font-family: 'Georgia', serif;
    font-size: 21px;
}

.item-content p {
    color: #8D6E63;
    line-height: 1.6;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 19px;
}

.tag {
    background: #D7CCC8;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #5D4037;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #BCAAA4;
    transform: scale(1.05);
}

.skContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.skill-category h3 {
    margin-bottom: 24px;
    color: #5D4037;
    font-family: 'Georgia', serif;
    font-size: 22px;
}

.skItem {
    margin-bottom: 24px;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 13px;
    color: #5D4037;
    font-weight: 500;
}

.skill-bar {
    height: 10px;
    background: #D7CCC8;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.skill-level {
    height: 100%;
    background: linear-gradient(90deg, #8D6E63, #A1887F);
    border-radius: 5px;
    transition: width 1s ease-in-out;
    position: relative;
}

.skill-level::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.contactLinks {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.contLink {
    padding: 16px 40px;
    background: linear-gradient(135deg, #8D6E63, #A1887F);
    color: #FFF8E1;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(141, 110, 99, 0.3);
}

.contLink:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(141, 110, 99, 0.4);
    background: linear-gradient(135deg, #A1887F, #8D6E63);
}

footer {
    background: rgba(121, 85, 72, 0.95);
    color: #FFF8E1;
    text-align: center;
    padding: 40px;
    margin-top: 48px;
    backdrop-filter: blur(10px);
}

/* Mobile Sidebar Styles */
@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }

    .navbar {
        padding: 0 16px;
    }

    .mobileMenu {
        display: flex;
    }

    .navLinks {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(121, 85, 72, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }

    .navLinks.active {
        right: 0;
    }

    .navLinks li {
        margin: 15px 0;
    }

    .navLinks a {
        font-size: 18px;
        padding: 10px 20px;
    }

    .mobileMenu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobileMenu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobileMenu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .titlebox h1 {
        font-size: 35px;
    }

    .about-content {
        grid-template-columns: 300px;
    }

    .gallery {
        grid-template-columns: 300px;
    }

    .contactLinks {
        gap: 16px;
    }

    .contLink {
        padding: 13px 24px;
    }

    .iQuickLinks {
        flex-direction: column;
        align-items: center;
    }

    .iQuickLinkCard {
        width: 100%;
        max-width: 400px;
    }

    .gallery {
        grid-template-columns: 350px;
        gap: 24px;
    }

    .bigCard {
        height: 550px;
    }

    .bigCard .cardImage {
        height: 350px;
    }

    .bigCard .item-content {
        padding: 20px;
    }

    .bigCard .item-content h3 {
        font-size: 20px;
    }

    section {
        padding: 32px 16px;
    }
}

@media (max-width: 480px) {
    .bigCard {
        height: 500px;
    }

    .bigCard .cardImage {
        height: 300px;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FDF6E3;
}

::-webkit-scrollbar-thumb {
    background: #A1887F;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8D6E63;
}

.toTheTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8D6E63, #A1887F);
    color: #FFF8E1;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(141, 110, 99, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.toTheTop.show {
    opacity: 1;
    visibility: visible;
}

.toTheTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(141, 110, 99, 0.4);
    background: linear-gradient(135deg, #A1887F, #8D6E63);
}

.socPost {
    background: #FFF8E1;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(141, 110, 99, 0.1);
    border: 1px solid #D7CCC8;
    transition: all 0.3s ease;
}

.socPost:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(141, 110, 99, 0.15);
}

.postHeader {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.userInfo {
    flex: 1;
}

.usn {
    font-weight: bold;
    color: #5D4037;
    font-size: 16px;
    margin-bottom: 3px;
}

.postDate {
    color: #8D6E63;
    font-size: 12px;
}

.post-content p {
    color: #5D4037;
    line-height: 1.6;
    margin-bottom: 15px;
}

.postImage {
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
}

.postImage img {
    display: block;
    width: 30%;
    height: auto;
    margin: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.postImage img:hover {
    transform: scale(1.02);
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #D7CCC8;
}

.vote-btn {
    background: transparent;
    border: 2px solid #D7CCC8;
    color: #8D6E63;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote-btn:hover {
    transform: scale(1.1);
}

.upvote:hover {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.downvote:hover {
    background: #f44336;
    border-color: #f44336;
    color: white;
}

.vote-btn.active {
    transform: scale(1.1);
}

.upvote.active {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.downvote.active {
    background: #f44336;
    border-color: #f44336;
    color: white;
}

.vote-count {
    font-weight: bold;
    color: #5D4037;
    min-width: 30px;
    text-align: center;
    font-size: 16px;
}

/*Books and Films.html CSS*/
.bigCard {
    background: #FFF8E1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(141, 110, 99, 0.15);
    transition: all 0.3s ease;
    border: 1px solid #D7CCC8;
    height: 850px;
    display: flex;
    flex-direction: column;
}

.bigCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(141, 110, 99, 0.25);
}

.bigCard .cardImage {
    width: 100%;
    height: 700px;
    border-radius: 0;
    background: linear-gradient(45deg, #A1887F, #BCAAA4);
    overflow: hidden;
}

.bigCard .cardImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bigCard:hover .cardImage img {
    transform: scale(1.05);
}

.bigCard .item-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bigCard .item-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #5D4037;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.bigCard .author {
    font-style: italic;
    color: #8D6E63;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
}

.bigCard .item-content p {
    color: #5D4037;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 16px;
    flex: 1;
}

.bigCard .tags {
    margin-top: auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 30px;
    margin-top: 32px;
}

@media (max-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(2, 350px);
    }
}

.cardImage {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #A1887F, #BCAAA4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cardImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cardImage:hover img {
    transform: scale(1.05);
}

.cardImage::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(93, 64, 55, 0.1);
}

/* Music.html CSS */
#musicPlayer {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.mPlayer {
    background: #FFF8E1;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(141, 110, 99, 0.1);
    border: 1px solid #D7CCC8;
}

.playing {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 24px;
}

.coverArt {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.coverArt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trackInfo h3 {
    color: #5D4037;
    font-size: 16px;
    margin-bottom: 4px;
    font-family: 'Georgia', serif;
}

.trackInfo p {
    color: #8D6E63;
    font-size: 14px;
}

.playerControls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progressContainer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progressBar {
    flex: 1;
    height: 4px;
    background: #D7CCC8;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #8D6E63, #A1887F);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.progressContainer span {
    color: #8D6E63;
    font-size: 11px;
    min-width: 32px;
}

.controlButtons {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.controlBtn {
    background: linear-gradient(135deg, #8D6E63, #A1887F);
    border: none;
    color: #FFF8E1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controlBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(141, 110, 99, 0.3);
}

.volumeControl {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

#volumeSlider {
    width: 100px;
    height: 4px;
    background: #D7CCC8;
    border-radius: 2px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #8D6E63;
    border-radius: 50%;
    cursor: pointer;
}

.iQuickLinks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin: 48px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1px;
}

.iQuickLinkCard {
    background: #FFF8E1;
    border-radius: 15px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(141, 110, 99, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #D7CCC8;
    width: 300px;
    flex-shrink: 0;
}

.iQuickLinkCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(141, 110, 99, 0.2);
}

.iQuickLinkCard h3 {
    font-size: 24px;
    color: #5D4037;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
}

.iQuickLinkCard p {
    color: #8D6E63;
    margin-bottom: 8px;
}

.iCardIcon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #8D6E63;
}

.iExploreBtn {
    display: inline-block;
    padding: 11px 29px;
    background: linear-gradient(135deg, #8D6E63, #A1887F);
    color: #FFF8E1;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(141, 110, 99, 0.3);
}

.iExploreBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(141, 110, 99, 0.4);
    background: linear-gradient(135deg, #A1887F, #8D6E63);
}

/* Progress trackers */
.iProgressSection {
    background: #FFF8E1;
    border-radius: 15px;
    padding: 32px;
    box-shadow: 0 5px 20px rgba(141, 110, 99, 0.1);
    border: 1px solid #D7CCC8;
    margin-bottom: 16px;
}

.iProgressHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.iProgressTitle {
    font-size: 24px;
    color: #5D4037;
    font-family: 'Georgia', serif;
}

.iProgressStats {
    color: #8D6E63;
    font-weight: 500;
}

.iProgressItem {
    margin-bottom: 24px;
}

.iProgressInfo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.iProgressName {
    color: #5D4037;
    font-weight: 500;
}

.iProgressPercent {
    color: #8D6E63;
    font-weight: 500;
}

.iProgressBar {
    height: 12px;
    background: #D7CCC8;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.iProgressLevel {
    height: 100%;
    background: linear-gradient(90deg, #8D6E63, #A1887F);
    border-radius: 6px;
    transition: width 1s ease-in-out;
    position: relative;
}

.iProgressLevel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: index-shimmer 2s infinite;
}

@keyframes index-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Contacts.html CSS */
.linkContainer {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.profileHeader {
    text-align: center;
    margin-bottom: 40px;
}

.pfp {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid #FFF8E1;
    box-shadow: 0 4px 15px rgba(141, 110, 99, 0.3);
    overflow: hidden;
    background: #FDF6E3;
}

.pfp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profileName {
    font-size: 28px;
    color: #5D4037;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.Links1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.Links {
    display: flex;
    align-items: center;
    background: #FFF8E1;
    border: 2px solid #D7CCC8;
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #5D4037;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(141, 110, 99, 0.1);
}

.Links:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 110, 99, 0.2);
    border-color: #8D6E63;
    background: #FFF8E1;
}

.linkIcon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.linkText {
    flex: 1;
    font-weight: 500;
    font-size: 16px;
}

.linkArrow {
    color: #8D6E63;
    font-size: 18px;
    opacity: 0.7;
}

.Links[data-type="email"] {
    background: linear-gradient(135deg, #FFF8E1, #F5F5F5);
}

.Links[data-type="github"] {
    background: linear-gradient(135deg, #FFF8E1, #F8F9FA);
}

.Links[data-type="linkedin"] {
    background: linear-gradient(135deg, #FFF8E1, #F3F2F1);
}
.Links[data-type="lastfm"] {
    background: linear-gradient(135deg, #FFF8E1, #F5F7FA);
}
.Links[data-type="booktrackers"] {
    background: linear-gradient(135deg, #FFF8E1, #F5F7FA);
}

.Links[data-type="filmtrackers"] {
    background: linear-gradient(135deg, #FFF8E1, #FDF3F4);
}

.Links[data-type="twitter"] {
    background: linear-gradient(135deg, #FFF8E1, #F5F8FA);
}

#contact {
    padding: 40px 32px;
}

#contact .iSectionTitle {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .linkContainer {
        padding: 0 16px;
    }

    .pfp {
        width: 100px;
        height: 100px;
    }

    .profileName {
        font-size: 24px;
    }

    .Links {
        padding: 14px 16px;
    }

    #contact {
        padding: 40px 16px;
    }
}