     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Fix profile image size on mobile */
.author-image,
img[src*="author"] {
  max-width: 150px !important;
  max-height: 150px !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

/* Responsive sizing for different screen sizes */
@media (max-width: 640px) {h
  .author-image,
  img[src*="author"] {
    max-width: 120px !important;
    max-height: 120px !important;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .author-image,
  img[src*="author"] {
    max-width: 150px !important;
    max-height: 150px !important;
  }
}

@media (min-width: 769px) {
  .author-image,
  img[src*="author"] {
    max-width: 200px !important;
    max-height: 200px !important;
  }
}

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #8B4513 0%, #A0522D 25%, #D2B48C 50%, #8B4049 75%, #6B2737 100%);
            background-size: 400% 400%;
            animation: subtleShift 15s ease infinite;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            position: relative;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px);
            opacity: 0.5;
            pointer-events: none;
        }

        @keyframes subtleShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .container {
            max-width: 600px;
            width: 100%;
        }

        h1 {
            color: #F5E6D3;
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5em;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 69, 19, 0.3);
        }

        .links-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .link {
            position: relative;
            display: block;
            padding: 16px 40px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .link span {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* LinkedIn - Premium frosted glass (main link) */
        .link-linkedin {
            background: linear-gradient(135deg, 
                rgba(10, 102, 194, 0.9) 0%, 
                rgba(0, 119, 181, 0.85) 50%, 
                rgba(10, 102, 194, 0.9) 100%
            );
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            box-shadow: 
                0 8px 32px rgba(10, 102, 194, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.18);
            transition: all 0.4s ease;
        }

        .link-linkedin::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(
                circle at center,
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.05) 30%,
                transparent 60%
            );
            transform: scale(0);
            transition: transform 1s ease;
            z-index: 0;
            pointer-events: none;
        }

        .link-linkedin::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            transform: skewX(-25deg);
            transition: left 1.2s ease;
            z-index: 0;
            pointer-events: none;
        }

        .link-linkedin:hover::before {
            transform: scale(1);
        }

        .link-linkedin:hover::after {
            left: 200%;
        }

        .link-linkedin:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 40px rgba(10, 102, 194, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, 
                rgba(10, 102, 194, 0.95) 0%, 
                rgba(0, 119, 181, 0.9) 50%, 
                rgba(10, 102, 194, 0.95) 100%
            );
        }

        /* Signal - Blue gradient with sweep */
        .link-signal {
            background: linear-gradient(135deg, #3a76f0 0%, #2e5bbd 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(58, 118, 240, 0.3);
        }

        .link-signal::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transform: skewX(-25deg);
            transition: left 1s ease;
            z-index: 0;
            pointer-events: none;
        }

        .link-signal:hover::before {
            left: 200%;
        }

        .link-signal:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(58, 118, 240, 0.4);
        }

        /* Threema - Green gradient with sweep */
        .link-threema {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
        }

        .link-threema::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transform: skewX(-25deg);
            transition: left 1s ease;
            z-index: 0;
            pointer-events: none;
        }

        .link-threema:hover::before {
            left: 200%;
        }

        .link-threema:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
        }

        /* Telegram - Dual-tone sweep */
        .link-telegram {
            background: linear-gradient(120deg, #0088cc 0%, #229ED9 50%, #41B9E6 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
        }

        .link-telegram::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent 0%,
                rgba(255, 255, 255, 0.4) 50%,
                transparent 100%
            );
            transition: left 0.8s ease;
            z-index: 0;
            pointer-events: none;
        }

        .link-telegram:hover::before {
            left: 100%;
        }

        .link-telegram:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
        }

        /* Instagram - Rainbow gradient with pulse */
        .link-instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
        }

        .link-instagram::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            z-index: 0;
            pointer-events: none;
        }

        .link-instagram:hover::before {
            width: 300%;
            height: 300%;
        }

        .link-instagram:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(225, 48, 108, 0.5);
        }

        /* TikTok - Glitch effect */
        .link-tiktok {
            background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 0, 80, 0.3);
            border: 2px solid transparent;
        }

        .link-tiktok::before {
            content: '';
            position: absolute;
            top: 0;
            left: -2px;
            width: calc(100% + 4px);
            height: 100%;
            background: linear-gradient(90deg, #00f2ea 0%, transparent 20%, transparent 80%, #ff0050 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
            pointer-events: none;
        }

        .link-tiktok::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 242, 234, 0.1) 50%, transparent 100%);
            transform: translateY(-100%);
            transition: transform 0.5s ease;
            z-index: 0;
            pointer-events: none;
        }

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

        .link-tiktok:hover::after {
            transform: translateY(100%);
        }

        .link-tiktok:hover {
            border-color: rgba(0, 242, 234, 0.5);
            box-shadow: 0 4px 20px rgba(255, 0, 80, 0.4), 0 0 30px rgba(0, 242, 234, 0.2);
        }

        .icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .note {
            color: rgba(245, 230, 211, 0.9);
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }