* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #000000;
    --card-bg: rgba(255, 255, 255, 0.08);
    --card-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent: #007AFF;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] {
    --primary-bg: #faf8f5;
    --card-bg: rgba(255, 252, 247, 0.85);
    --card-hover: rgba(255, 252, 247, 0.95);
    --text-primary: #2c2416;
    --text-secondary: rgba(44, 36, 22, 0.65);
    --accent: #d97706;
    --border: rgba(139, 92, 46, 0.15);
    --shadow: rgba(139, 92, 46, 0.2);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Background Base Layer */
body::before {
    content: '';
    position: fixed;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: var(--primary-bg);
    z-index: -3;
}

/* Animated Gradient Layer */
.bg-gradient {
    position: fixed;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.2) 0%, rgba(0, 122, 255, 0.1) 25%, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(88, 86, 214, 0.18) 0%, rgba(88, 86, 214, 0.08) 20%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 45, 85, 0.15) 0%, rgba(255, 45, 85, 0.07) 20%, transparent 40%),
        radial-gradient(circle at 60% 70%, rgba(175, 82, 222, 0.12) 0%, rgba(175, 82, 222, 0.05) 18%, transparent 35%),
        radial-gradient(circle at 30% 30%, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.04) 15%, transparent 30%);
    animation: gradientShift 30s ease-in-out infinite;
    z-index: -2;
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

[data-theme="light"] .bg-gradient {
    background: 
        radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.12) 0%, rgba(217, 119, 6, 0.06) 25%, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(251, 146, 60, 0.1) 0%, rgba(251, 146, 60, 0.04) 20%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 20%, transparent 40%),
        radial-gradient(circle at 60% 70%, rgba(202, 138, 4, 0.09) 0%, rgba(202, 138, 4, 0.03) 18%, transparent 35%),
        radial-gradient(circle at 30% 30%, rgba(234, 179, 8, 0.07) 0%, rgba(234, 179, 8, 0.02) 15%, transparent 30%);
}

/* Overlay Layer */
.bg-overlay {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
    z-index: -1;
    will-change: transform;
}

[data-theme="light"] .bg-overlay {
    background: radial-gradient(circle at 50% 50%, rgba(255, 248, 235, 0.7) 0%, rgba(254, 243, 199, 0.3) 40%, transparent 70%);
}

/* Noise texture to prevent color banding */
.bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes gradientShift {
    0%, 100% { 
        opacity: 1;
    }
    25% { 
        opacity: 0.85;
    }
    50% { 
        opacity: 0.95;
    }
    75% { 
        opacity: 0.9;
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.5; 
    }
    50% { 
        opacity: 0.8; 
    }
}

@keyframes qrPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 24px var(--shadow);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 0 12px 32px var(--shadow);
    }
}

@keyframes heartbeat {
    0%, 100% { 
        transform: scale(1);
    }
    10%, 30% { 
        transform: scale(1.2);
    }
    20%, 40% { 
        transform: scale(1.1);
    }
}

/* Top Controls */
.top-controls {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 24px 0;
    display: flex;
    justify-content: space-between;
    z-index: 100;
    pointer-events: none;
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    color: var(--text-primary);
}

.control-btn:hover {
    background: var(--card-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 16px var(--shadow);
}

.control-btn:active {
    transform: scale(0.95);
}

.control-btn svg {
    transition: transform 0.3s ease;
}

.theme-btn:hover svg {
    transform: rotate(20deg);
}

.share-btn:hover svg {
    transform: translateY(-2px);
}

/* QR Code Display (Always Visible Bottom) */
.qr-display {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    z-index: 99;
    box-shadow: 0 8px 24px var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 1s both, qrPulse 3s ease-in-out 3s infinite;
}

.qr-display:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
    animation: fadeInUp 0.8s ease-out 1s both;
}

.qr-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr-code-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

[data-theme="light"] .qr-code-container {
    background: white;
}

.qr-code {
    width: 120px;
    height: 120px;
    display: block;
    transform: scale(1.2);
    object-fit: cover;
}

[data-theme="light"] .qr-code {
    filter: invert(1);
}

/* Clickinfo Banner (Bottom Center) */
.clickinfo-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 12px 20px;
    z-index: 98;
    box-shadow: 0 -4px 24px var(--shadow);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 90%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clickinfo-banner.show {
    transform: translateX(-50%) translateY(0);
}

.clickinfo-banner-content {
    display: flex;
    align-items: center;
    flex: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 8px;
}

.clickinfo-banner-content:hover {
    background: var(--card-hover);
}

.clickinfo-banner-text {
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.clickinfo-banner-text strong {
    color: #14b8a6;
    font-weight: 700;
    transition: color 0.3s ease;
}

.clickinfo-banner-content:hover .clickinfo-banner-text strong {
    color: #0d9488;
}

.clickinfo-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    flex-shrink: 0;
}

.clickinfo-close:hover {
    background: var(--card-hover);
    color: var(--text-primary);
    transform: rotate(90deg);
}

/* Custom Preview Images */
.custom-preview-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .custom-preview-image {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(139, 92, 46, 0.15);
}

.custom-preview-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 24px 80px;
    position: relative;
    z-index: 1;
}

.profile-section {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out;
}

.profile-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    position: relative;
    animation: scaleIn 0.6s ease-out;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    box-shadow: 0 8px 32px var(--shadow);
    transition: transform 0.3s ease;
}

[data-theme="light"] .profile-image {
    border: 3px solid rgba(139, 92, 46, 0.25);
    box-shadow: 0 8px 32px rgba(139, 92, 46, 0.15);
}

[data-theme="light"] .profile-name {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-bio {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--card-hover);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px var(--shadow);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--text-primary);
}

.links-section {
    margin-top: 40px;
}

.link-card, .contact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.link-card:hover, .contact-card:hover {
    background: var(--card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
    border-color: rgba(255, 255, 255, 0.2);
}

.link-card:active {
    transform: translateY(-2px);
}

.link-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
    letter-spacing: -0.2px;
    padding-right: 40px;
}

.section-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 32px 0 16px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-card {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.15) 0%, rgba(88, 86, 214, 0.15) 100%);
    cursor: pointer;
}

[data-theme="light"] .contact-card {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12) 0%, rgba(251, 146, 60, 0.12) 100%);
}

.contact-card .link-title {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .contact-card .link-title {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.email-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.email-item svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }
.link-card:nth-child(7) { animation-delay: 0.7s; }
.section-header:nth-of-type(1) { animation-delay: 0.25s; }
.section-header:nth-of-type(2) { animation-delay: 0.35s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    transform-origin: center;
}

.clickinfo-link {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.clickinfo-link:hover {
    color: #0d9488;
    text-decoration: none;
}

.clickinfo-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #14b8a6;
    transition: width 0.3s ease;
}

.clickinfo-link:hover::after {
    width: 100%;
}

/* Keep teal in light mode too for footer and banner */
[data-theme="light"] .clickinfo-link {
    color: #14b8a6;
}

[data-theme="light"] .clickinfo-link:hover {
    color: #0d9488;
}

[data-theme="light"] .clickinfo-link::after {
    background: #14b8a6;
}

[data-theme="light"] .clickinfo-banner-text strong {
    color: #14b8a6;
}

[data-theme="light"] .clickinfo-banner-content:hover .clickinfo-banner-text strong {
    color: #0d9488;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #000;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    font-size: 15px;
    font-weight: 500;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.link-card.expanded {
    padding-bottom: 24px;
}

.link-preview {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.link-preview.show {
    max-height: 600px;
    opacity: 1;
    margin-top: 16px;
}

.preview-content {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .preview-content {
    background: rgba(255, 252, 247, 0.6);
    border: 1px solid rgba(139, 92, 46, 0.15);
}

.embed-container {
    position: relative;
}

.embed-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    display: block;
    margin-bottom: 12px;
}

[data-theme="light"] .embed-container iframe {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 92, 46, 0.1);
}

.embed-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2) 0%, rgba(88, 86, 214, 0.2) 100%);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

[data-theme="light"] .embed-link {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.embed-link:hover {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.3) 0%, rgba(88, 86, 214, 0.3) 100%);
    border-color: rgba(0, 122, 255, 0.5);
    transform: translateY(-2px);
}

[data-theme="light"] .embed-link:hover {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.25) 0%, rgba(251, 146, 60, 0.25) 100%);
    border-color: rgba(217, 119, 6, 0.5);
}

.embed-link span::after {
    content: '';
    display: inline-block;
    margin-left: 4px;
}

.blog-preview, .medium-embed, .link-preview-card {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}

[data-theme="light"] .blog-preview,
[data-theme="light"] .medium-embed,
[data-theme="light"] .link-preview-card {
    background: rgba(255, 252, 247, 0.8);
    border: 1px solid rgba(139, 92, 46, 0.2);
}

.blog-preview h3, .medium-embed h3, .link-preview-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.blog-preview p, .medium-embed p, .link-preview-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.preview-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.preview-url {
    font-size: 13px;
    color: var(--accent);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    padding: 8px 12px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 6px;
    margin-top: 8px;
}

[data-theme="light"] .preview-url {
    background: rgba(217, 119, 6, 0.1);
}

.feed-content {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.preview-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: var(--text-secondary);
    font-size: 14px;
}

.preview-loading::after {
    content: '';
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid var(--text-secondary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.expand-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.link-card.expanded .expand-icon {
    transform: translateY(-50%) rotate(180deg);
}

.expand-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--text-secondary);
}

@media (max-width: 640px) {
    .top-controls {
        padding: 16px 20px 0;
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }

    .control-btn svg {
        width: 18px;
        height: 18px;
    }

    .container {
        padding: 16px 20px 60px;
    }

    .profile-name {
        font-size: 28px;
    }

    .profile-bio {
        font-size: 15px;
    }

    .link-card, .contact-card {
        padding: 18px 20px;
    }

    .email-item span {
        font-size: 13px;
    }

    .embed-container iframe {
        height: 280px;
    }

    .blog-preview h3, .medium-embed h3, .link-preview-card h3 {
        font-size: 16px;
    }

    .blog-preview p, .medium-embed p, .link-preview-card p {
        font-size: 13px;
    }

    .embed-link {
        font-size: 13px;
        padding: 10px 16px;
    }

    /* QR Display Mobile - Hide on mobile */
    .qr-display {
        display: none;
    }

    /* Clickinfo Banner Mobile */
    .clickinfo-banner {
        padding: 10px 16px;
        max-width: 95%;
        gap: 6px;
    }

    .clickinfo-banner-content {
        padding: 4px 6px;
    }

    .clickinfo-banner-text {
        font-size: 12px;
    }

    .clickinfo-close {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }
}
