/* CSS variables for consistent styling */
:root {
    --bg-color: #100f0f;
    --card-color: #1c1c1e;
    --button-color: #3a3a3c;
    --text-primary: #ffffff;
    --text-secondary: #8e8e93;
    --text-tertiary: #636366;
    --youtube-red: #ff0000;
    --spotify-green: #1db954;
    --instagram-color: #c13584; /* Representative color for Instagram */
    --twitter-blue: #1da1f2;
    --brand: #81BFB5;
}

/* Light mode variables */
[data-theme="light"] {
    --bg-color: #FDFCF8;
    --card-color: #ffffff;
    --button-color: #e5e5e7;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --text-tertiary: #86868b;
}

/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(129, 191, 181, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129, 191, 181, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: loaderGridMove 20s linear infinite;
}

@keyframes loaderGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
    background: rgba(28, 28, 30, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(129, 191, 181, 0.5), transparent);
}

.loader-svg {
    width: 300px;
    height: 150px;
    color: var(--brand);
}

.loader-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.loader-text {
    font-family: 'Bitcount Grid Single', monospace;
    font-size: 24px;
    font-weight: 400;
    margin-top: 3rem;
    fill: var(--text-primary);
    text-shadow: 0 0 20px var(--brand);
}

.loader-dot {
    fill: var(--brand);
    filter: drop-shadow(0 0 10px var(--brand));
}

.loader-gif {
    width: 120px;
    height: auto;
    opacity: 0;
    filter: invert(1) brightness(0.6) contrast(1.5) saturate(0.8);
    mix-blend-mode: screen;
    transition: all 0.6s ease-in-out;
    background: transparent;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    mask: radial-gradient(ellipse at center, black 60%, transparent 100%);
    -webkit-mask: radial-gradient(ellipse at center, black 60%, transparent 100%);
}

/* Light theme adjustments for loader gif */
[data-theme="light"] .loader-gif {
    filter: brightness(1.2) contrast(1.3) saturate(0.9) opacity(0.7);
    mix-blend-mode: overlay;
    background: rgba(253, 252, 248, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--brand), rgba(129, 191, 181, 0.6));
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease-out;
    box-shadow: 0 0 10px var(--brand);
}

.loader-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: loaderShine 1.5s ease-in-out infinite;
}

@keyframes loaderShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* General Body Styles */
body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 1rem;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

/* Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(129, 191, 181, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(129, 191, 181, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    mask: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 255, 255, 1.0) 0%, 
        rgba(255, 255, 255, 0.8) 10%, 
        rgba(255, 255, 255, 0.4) 20%, 
        rgba(255, 255, 255, 0.1) 30%, 
        transparent 45%);
    -webkit-mask: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 255, 255, 1.0) 0%, 
        rgba(255, 255, 255, 0.8) 10%, 
        rgba(255, 255, 255, 0.4) 20%, 
        rgba(255, 255, 255, 0.1) 30%, 
        transparent 45%);
    transition: mask 0.2s ease-out, -webkit-mask 0.2s ease-out;
}

/* Paper Texture Overlay */
.paper-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.6) 0.8px, transparent 0.8px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.5) 1.2px, transparent 1.2px),
        radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.4) 0.6px, transparent 0.6px),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 60% 15%, rgba(0, 0, 0, 0.3) 1.8px, transparent 1.8px);
    background-size: 
        8px 8px,
        6px 6px,
        12px 12px,
        4px 4px,
        16px 16px,
        10px 10px,
        20px 20px,
        14px 14px;
    background-position:
        0 0,
        3px 3px,
        6px 6px,
        1px 1px,
        8px 8px,
        5px 5px,
        12px 12px,
        7px 7px;
    mix-blend-mode: overlay;
    animation: paperFloat 20s ease-in-out infinite;
}

.paper-texture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 255, 255, 0.1) 25%, 
            transparent 25%, 
            transparent 50%, 
            rgba(255, 255, 255, 0.1) 50%, 
            rgba(255, 255, 255, 0.1) 75%, 
            transparent 75%
        ),
        linear-gradient(-45deg, 
            rgba(0, 0, 0, 0.08) 25%, 
            transparent 25%, 
            transparent 50%, 
            rgba(0, 0, 0, 0.08) 50%, 
            rgba(0, 0, 0, 0.08) 75%, 
            transparent 75%
        ),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.06) 25%, 
            transparent 25%, 
            transparent 50%, 
            rgba(255, 255, 255, 0.06) 50%, 
            rgba(255, 255, 255, 0.06) 75%, 
            transparent 75%
        );
    background-size: 2px 2px, 3px 3px, 4px 4px;
    mix-blend-mode: hard-light;
    animation: paperWeave 25s linear infinite;
}

.paper-texture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.04) 0px,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 3px,
            transparent 3px,
            transparent 4px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 0px,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 3px,
            rgba(0, 0, 0, 0.025) 3px,
            rgba(0, 0, 0, 0.025) 4px,
            transparent 4px,
            transparent 5px
        ),
        repeating-linear-gradient(
            22.5deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 0.5px,
            transparent 0.5px,
            transparent 2px
        ),
        repeating-linear-gradient(
            67.5deg,
            rgba(0, 0, 0, 0.015) 0px,
            rgba(0, 0, 0, 0.015) 0.5px,
            transparent 0.5px,
            transparent 1.5px
        );
    mix-blend-mode: multiply;
    animation: paperGrain 15s ease-in-out infinite alternate;
}

@keyframes paperFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    20% { 
        transform: translate(3px, -2px) scale(1.005);
        opacity: 0.8;
    }
    40% { 
        transform: translate(-2px, 3px) scale(0.995);
        opacity: 0.5;
    }
    60% { 
        transform: translate(2px, 2px) scale(1.003);
        opacity: 0.7;
    }
    80% { 
        transform: translate(-1px, -2px) scale(0.998);
        opacity: 0.65;
    }
}

@keyframes paperWeave {
    0% { 
        transform: translate(0, 0);
        opacity: 0.8;
    }
    25% { 
        transform: translate(2px, -1px);
        opacity: 1;
    }
    50% { 
        transform: translate(-1px, 2px);
        opacity: 0.9;
    }
    75% { 
        transform: translate(1px, 1px);
        opacity: 0.95;
    }
    100% { 
        transform: translate(0, 0);
        opacity: 0.8;
    }
}

@keyframes paperGrain {
    0% { 
        opacity: 0.7;
        transform: translate(0, 0);
    }
    33% { 
        opacity: 0.9;
        transform: translate(1px, -1px);
    }
    66% { 
        opacity: 0.6;
        transform: translate(-1px, 1px);
    }
    100% { 
        opacity: 0.8;
        transform: translate(0.5px, 0.5px);
    }
}

/* Light theme paper texture adjustments */
[data-theme="light"] .paper-texture {
    opacity: 0.08;
    mix-blend-mode: soft-light;
}

[data-theme="light"] .paper-texture::before {
    mix-blend-mode: soft-light;
    opacity: 0.3;
}

[data-theme="light"] .paper-texture::after {
    mix-blend-mode: soft-light;
    opacity: 0.2;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(28, 28, 30, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.theme-toggle:hover {
    background: rgba(28, 28, 30, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: scale(1.1);
}

.theme-toggle:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.theme-toggle-icon {
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(129, 191, 181, 0.3);
}

.theme-toggle-icon.fa-moon {
    color: #87ceeb; /* Light blue for moon icon */
}

.theme-toggle-icon.fa-sun {
    color: #ffa500; /* Orange color for sun icon */
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.4);
}

.theme-toggle-switch {
    display: none; /* Hide the old switch element */
}

[data-theme="light"] .theme-toggle {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .theme-toggle-icon {
    transform: rotate(180deg);
    color: #ffbb00; /* Orange color for sun icon */
}

/* Light mode adjustments */
[data-theme="light"] .social-link {
    background: rgba(255, 255, 255, 0.4);
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .social-link:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .link-card {
    background: rgba(255, 255, 255, 0.3);
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .link-card:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .link-action {
    background: rgba(0, 0, 0, 0.1);
    border: 0.5px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .link-action:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* Main Container */
.container {
    max-width: 480px;
    width: 100%;
    text-align: center;
    padding: 0 1rem;
    box-sizing: border-box;
    position: relative;
    z-index: 2;

}

/* Header Styles */
header {
    margin-bottom: 2.5rem;
    padding-top: 5rem;
}

/* Emoji Face Styles */
.emoji-face {
    font-size: 24px;
    margin: 0 0 1rem 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--text-primary);
    text-shadow: 
        0 0 10px var(--brand),
        0 0 20px var(--brand),
        0 0 30px rgba(129, 191, 181, 0.6);
    filter: brightness(1.2) drop-shadow(0 0 15px var(--brand));
    display: inline-block;
    animation: idleBounce 3s ease-in-out infinite;
}

.emoji-face:hover {
    transform: translateY(-8px) scale(1.3);
    text-shadow: 
        0 0 20px var(--brand),
        0 0 40px var(--brand),
        0 0 60px var(--brand),
        0 0 80px rgba(129, 191, 181, 0.8);
    filter: brightness(1.6) drop-shadow(0 0 25px var(--brand));
    animation: gentleBounce 2s ease-in-out infinite;
}

@keyframes idleBounce {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-3px); 
    }
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(-8px) scale(1.3); }
    20% { transform: translateY(-15px) scale(1.35) rotate(2deg); }
    40% { transform: translateY(-5px) scale(1.25) rotate(-1deg); }
    60% { transform: translateY(-12px) scale(1.32) rotate(1deg); }
    80% { transform: translateY(-6px) scale(1.28) rotate(0deg); }
}

.logo {
    width: 48px;
    height: 24px;
    margin-bottom: 2rem;
}

h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 2rem 0 0rem 0;
    letter-spacing: -0.02em;
}

.name-mudit {
    font-family: 'Bitcount Grid Single', monospace;
    font-weight: 50;
    font-size: 1em;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-transform: lowercase;
    letter-spacing: 0em;
    color: var(--text-primary);
    position: relative;
}

.name-mudit::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), rgba(129, 191, 181, 0.6));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    box-shadow: 0 0 8px var(--brand);
}

.name-mudit:hover::after {
    width: 100%;
}
.titles {
    font-size: 1.rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(28, 28, 30, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background: rgba(58, 58, 60, 0.5);
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.social-link .fab, .social-link .fa-brands {
    font-size: 1rem;
}

.fa-youtube { color: var(--youtube-red); }
.fa-instagram { color: var(--instagram-color); }
.fa-twitter, .fa-x-twitter { color: var(--twitter-blue); }
.fa-github { color: var(--text-primary); }
.fa-linkedin { color: #0077b5; }

/* Links List */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.link-card {
    background: rgba(28, 28, 30, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-card:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(28, 28, 30, 0.25);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.link-card:hover::before {
    opacity: 1;
}

.link-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.link-text {
    flex: 1;
    min-width: 0;
}

.link-text h2 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0.25rem 0 0 0;
    padding: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-action {
    background: rgba(58, 58, 60, 0.8);
    font-family: 'Bitcount Grid Single', monospace;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 0.7rem 1.2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 100;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.link-action-brand{
    background: rgba(129, 191, 181, 0.9);
    backdrop-filter: blur(10px);
    font-family: 'Bitcount Grid Single', monospace;
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 0.7rem 1.2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 100;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 16px rgba(129, 191, 181, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-action-brand:hover {
    background: rgba(129, 191, 181, 1);
    transform: translateY(-1px) scale(1.05);
    box-shadow: 
        0 8px 24px rgba(129, 191, 181, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.link-action:hover {
    background: rgba(85, 85, 85, 0.9);
    transform: translateY(-1px) scale(1.05);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Icon Styles */
.link-icon-p {
    background-color: var(--button-color);
    font-weight: bold;
    font-style: italic;
}

.link-icon-spotify {
    background-color: var(--spotify-green);
}

.link-icon-youtube {
    background-color: var(--youtube-red);
}

.link-icon-custom {
    background-color: var(--button-color);
    overflow: hidden;
}

.custom-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Footer */
footer {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    body {
        padding: 0.5rem;
    }
    
    .container {
        padding: 1.5rem;
        max-width: 100%;
        margin: 1rem auto;
        border-radius: 20px;
    }
    
    header {
        padding-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .logo {
        width: 40px;
        height: 20px;
    }
    
    .social-links {
        gap: 0.4rem;
    }
    
    .social-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .links-list {
        padding: 0;
        gap: 0.6rem;
    }
    
    .link-card {
        padding: 0.9rem;
    }
    
    .link-icon {
        width: 44px;
        height: 44px;
    }
    
    .link-text h2 {
        font-size: 0.95rem;
    }
    
    .link-text p {
        font-size: 0.8rem;
    }
    
    .link-action {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .link-info {
        gap: 0.8rem;
    }
    
    .link-icon {
        width: 40px;
        height: 40px;
    }
    
    .link-action {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }
}