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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #000000;
    --text-secondary: #333333;
    --accent-color: #0066cc;
    --accent-hover: #0052a3;
    --card-bg: #ffffff;
    --border-radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: #000000;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 100px 40px;
}

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

@keyframes slideInRough {
    0% {
        opacity: 0;
        transform: translateX(-40px) rotate(-2deg);
    }
    60% {
        opacity: 1;
        transform: translateX(8px) rotate(1deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(15px);
    }
    70% {
        opacity: 1;
        transform: scale(1.02) translateY(-3px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

header {
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out;
}

h1 {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.01em;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.highlight {
    color: #000000;
    font-weight: 400;
}

.intro {
    margin-bottom: 30px;
}

.lead {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    white-space: nowrap;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.highlight-text {
    color: #000000;
    font-weight: 400;
    margin-left: -6px;
}


.app-icon {
    width: 40px;
    height: 40px;
    border-radius: 35%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    margin-left: 8px;
}

.app-icon {
    transform: rotate(15deg);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-icon:hover {
    opacity: 0.8;
    transform: rotate(0deg) scale(1.1);
}

.app-icon img {
    border-radius: 35%;
}

/* Custom Tooltip */
.tooltip {
    position: relative;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    margin-bottom: 8px;
}

.tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

.instagram-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 35%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    text-decoration: none;
    color: inherit;
}

.instagram-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.instagram-icon:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.instagram-icon img {
    border-radius: 35%;
}

.social {
    margin-bottom: 30px;
}

.social h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #000000;
    line-height: 1.6;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    animation: fadeIn 0.8s ease-out 0.6s both;
}


/* Social Icons Stack Container */
.social-icons-stack {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    position: relative;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 35%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: transparent;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform;
}

/* Stacked positioning - overlapping effect */
.social-icon:nth-child(1) {
    z-index: 4;
    transform: translateX(0px) rotate(15deg);
    transition-delay: 0ms;
}

.social-icon:nth-child(2) {
    z-index: 3;
    transform: translateX(-8px) rotate(0deg);
    transition-delay: 0ms;
}

.social-icon:nth-child(3) {
    z-index: 2;
    transform: translateX(-16px) rotate(-15deg);
    transition-delay: 0ms;
}

/* Hover effect - spread out in clean row */
.social-icons-stack:hover .social-icon:nth-child(1) {
    transform: translateX(0px) rotate(0deg);
    transition-delay: 0ms;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icons-stack:hover .social-icon:nth-child(2) {
    transform: translateX(20px) rotate(0deg);
    transition-delay: 80ms;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icons-stack:hover .social-icon:nth-child(3) {
    transform: translateX(40px) rotate(0deg);
    transition-delay: 160ms;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.social-icon img {
    border-radius: 35%;
}

/* Individual icon hover effects - smooth pop out while staying in place */
.social-icons-stack:hover .social-icon:nth-child(1):hover {
    opacity: 0.8;
    transform: translateX(0px) rotate(0deg) scale(1.1);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

.social-icons-stack:hover .social-icon:nth-child(2):hover {
    opacity: 0.8;
    transform: translateX(20px) rotate(0deg) scale(1.1);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

.social-icons-stack:hover .social-icon:nth-child(3):hover {
    opacity: 0.8;
    transform: translateX(40px) rotate(0deg) scale(1.1);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

/* Tech Stack Section */
.tech-stack {
    margin-bottom: 60px;
}

.tech-stack h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin-bottom: 40px;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tech-icon {
    width: 40px;
    height: 40px;
    border-radius: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.cursor-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.augment-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.claude-icon {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
}

.supabase-icon {
    background: linear-gradient(135deg, #3ecf8e 0%, #00d4aa 100%);
}

.chatgpt-icon {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
}

.tech-info h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 500;
}

.tech-info h3 a {
    color: var(--accent-color);
    text-decoration: none;
}

.tech-info h3 a:hover {
    text-decoration: underline;
}

.tech-info p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Top Navigation */
.top-nav {
    margin-top: 15px;
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.top-nav .cta-link {
    color: #000000;
    text-decoration: none;
    font-weight: 400;
}

.top-nav .cta-link:hover {
    text-decoration: underline;
}

/* Category Layout */
.category {
    margin-bottom: 30px;
}

.category h2 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Tech List Layout */
.tech-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeIn 0.8s ease-out both;
}

.tech-item:nth-child(1) { animation-delay: 0.4s; }
.tech-item:nth-child(2) { animation-delay: 0.6s; }
.tech-item:nth-child(3) { animation-delay: 0.8s; }
.tech-item:nth-child(4) { animation-delay: 1.0s; }
.tech-item:nth-child(5) { animation-delay: 1.2s; }
.tech-item:nth-child(6) { animation-delay: 1.4s; }
.tech-item:nth-child(7) { animation-delay: 1.6s; }
.tech-item:nth-child(8) { animation-delay: 1.8s; }

.tech-icon {
    width: 40px;
    height: 40px;
    border-radius: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.tech-icon img {
    border-radius: 35%;
}

.tech-content h3 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
}

.tech-content h3 a {
    color: #000000;
    text-decoration: none;
}

.tech-content h3 a:hover {
    text-decoration: underline;
}

.tech-content p {
    margin: 0;
    font-size: 14px;
    color: #000000;
    line-height: 1.4;
    font-weight: 400;
}

/* Additional Tech Icons */
.react-icon {
    background: linear-gradient(135deg, #61dafb 0%, #21d4fd 100%);
}

.nextjs-icon {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.tailwind-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.figma-icon {
    background: linear-gradient(135deg, #f24e1e 0%, #ff7262 100%);
}

.vercel-icon {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.github-icon {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
}

.xcode-icon {
    background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
}

.swift-icon {
    background: linear-gradient(135deg, #FA7343 0%, #F05138 100%);
}

.porkbun-icon {
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
}

.cta-section {
    margin-bottom: 30px;
}

.cta-section-last {
    margin-bottom: 0;
}

.privacy-section {
    margin-bottom: 30px;
}

/* Privacy Policy link on INDEX page - appears LAST */
main > .privacy-section p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0;
    animation: fadeIn 0.8s ease-out 1.8s both !important;
}

/* Privacy Policy sections on privacy-policy.html page */
.privacy-section p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 16px;
    animation: fadeIn 0.8s ease-out both;
}

.privacy-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 400;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Privacy Policy Page Styles */
header h1 .highlight {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.privacy-intro {
    margin-bottom: 30px;
    margin-top: 0;
}

.privacy-intro h2 {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
    margin-top: 0;
    line-height: 1.5;
    letter-spacing: 0.01em;
    animation: fadeIn 0.8s ease-out 0.5s both;
}

.privacy-intro p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    animation: fadeIn 0.8s ease-out 0.7s both;
}

.privacy-section {
    margin-bottom: 30px;
}

.privacy-section h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.4;
    animation: fadeIn 0.8s ease-out both;
}

.privacy-section p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 16px;
    animation: fadeIn 0.8s ease-out both;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.privacy-section li {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 8px;
    animation: fadeIn 0.8s ease-out both;
}

.privacy-section a {
    color: #0066cc;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-footer {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.privacy-footer p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    animation: fadeIn 0.8s ease-out both;
}

/* Animation delays for privacy sections */
/* Information We Collect - section 2 */
.privacy-section:nth-child(2) h3 { animation-delay: 0.9s; }
.privacy-section:nth-child(2) p { animation-delay: 1.0s; }
.privacy-section:nth-child(2) li { animation-delay: 1.05s; }

/* How We Use Your Information - section 3 */
.privacy-section:nth-child(3) h3 { animation-delay: 1.1s; }
.privacy-section:nth-child(3) p { animation-delay: 1.2s; }
.privacy-section:nth-child(3) li { animation-delay: 1.25s; }

/* Cookies and Tracking - section 4 */
.privacy-section:nth-child(4) h3 { animation-delay: 1.3s; }
.privacy-section:nth-child(4) p { animation-delay: 1.4s; }
.privacy-section:nth-child(4) li { animation-delay: 1.45s; }

/* Other sections */
.privacy-section:nth-child(5) h3 { animation-delay: 1.5s; }
.privacy-section:nth-child(5) p { animation-delay: 1.55s; }
.privacy-section:nth-child(5) li { animation-delay: 1.6s; }

.privacy-section:nth-child(6) h3 { animation-delay: 1.65s; }
.privacy-section:nth-child(7) h3 { animation-delay: 1.75s; }
.privacy-section:nth-child(8) h3 { animation-delay: 1.85s; }
.privacy-section:nth-child(9) h3 { animation-delay: 1.95s; }
.privacy-section:nth-child(10) h3 { animation-delay: 2.05s; }
.privacy-section:nth-child(11) h3 { animation-delay: 2.15s; }

.privacy-footer { animation-delay: 2.25s; }

.cta-section p {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0;
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.cta-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 400;
}

.cta-link:hover {
    text-decoration: underline;
}

.divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 30px 0;
    border: none;
    animation: fadeIn 0.8s ease-out 1.0s both;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 20px 40px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.cookie-btn:hover {
    background-color: #f8f9fa;
    border-color: #d0d0d0;
}

.cookie-accept {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.cookie-accept:hover {
    background-color: #333333;
    border-color: #333333;
}

.cookie-decline {
    background-color: #ffffff;
    color: #000000;
}

.cookie-decline:hover {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 60px 30px;
    }

    h1 {
        font-size: 28px;
    }

    .lead {
        font-size: 24px;
        flex-wrap: wrap;
    }

    /* Mobile touch animations for app icons - trigger when tapping anywhere in the lead paragraph */
    .lead:active .app-icon {
        opacity: 0.8;
        transform: rotate(0deg) scale(1.1);
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    }

    .lead:active .instagram-icon {
        opacity: 0.8;
        transform: scale(1.1);
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    }

    /* Also trigger when tapping directly on the icons */
    .app-icon:active {
        opacity: 0.8;
        transform: rotate(0deg) scale(1.1);
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    }

    .instagram-icon:active {
        opacity: 0.8;
        transform: scale(1.1);
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    }

    .social h2 {
        font-size: 24px;
        flex-wrap: wrap;
        margin-bottom: 7.5px !important;
    }

    .cta-section p {
        font-size: 24px;
    }

    .privacy-section p {
        font-size: 13px;
    }

    /* Privacy Policy Mobile */
    .privacy-intro h2 {
        font-size: 24px;
    }

    .privacy-intro p {
        font-size: 16px;
    }

    .privacy-section h3 {
        font-size: 18px;
    }

    .privacy-section p {
        font-size: 14px;
    }

    .privacy-section li {
        font-size: 14px;
    }

    .app-icons {
        flex-wrap: wrap;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    /* Mobile social icons - ensure proper touch interaction */
    .social-icons-stack {
        touch-action: manipulation;
    }

    /* Trigger animation when tapping anywhere in the h2 (including text) */
    .social h2:active .social-icon:nth-child(1) {
        transform: translateX(0px) rotate(0deg);
        transition-delay: 0ms;
    }

    .social h2:active .social-icon:nth-child(2) {
        transform: translateX(20px) rotate(0deg);
        transition-delay: 80ms;
    }

    .social h2:active .social-icon:nth-child(3) {
        transform: translateX(40px) rotate(0deg);
        transition-delay: 160ms;
    }

    /* Also trigger when tapping directly on the icon stack */
    .social-icons-stack:active .social-icon:nth-child(1) {
        transform: translateX(0px) rotate(0deg);
        transition-delay: 0ms;
    }

    .social-icons-stack:active .social-icon:nth-child(2) {
        transform: translateX(20px) rotate(0deg);
        transition-delay: 80ms;
    }

    .social-icons-stack:active .social-icon:nth-child(3) {
        transform: translateX(40px) rotate(0deg);
        transition-delay: 160ms;
    }

    /* Cookie Banner Mobile */
    .cookie-banner {
        padding: 16px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-content p {
        font-size: 13px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Tech Stack Mobile */
    .tech-list {
        gap: 24px;
    }

    .tech-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tech-content h3 {
        font-size: 18px;
    }

    .tech-content p {
        font-size: 13px;
    }

    .category h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 24px;
    }

    .lead {
        font-size: 20px;
        flex-wrap: wrap;
    }

    .social h2 {
        font-size: 20px;
        flex-wrap: wrap;
        margin-bottom: 7.5px !important;
    }

    .cta-section p {
        font-size: 20px;
    }

    .privacy-section p {
        font-size: 12px;
    }

    /* Privacy Policy Small Mobile */
    .privacy-intro h2 {
        font-size: 20px;
    }

    .privacy-intro p {
        font-size: 14px;
    }

    .privacy-section h3 {
        font-size: 16px;
    }

    .privacy-section p {
        font-size: 13px;
    }

    .privacy-section li {
        font-size: 13px;
    }

    /* Small mobile social icons - ensure proper touch interaction */
    .social h2:active .social-icon:nth-child(1) {
        transform: translateX(0px) rotate(0deg);
        transition-delay: 0ms;
    }

    /* Mobile spacing adjustments - 30px after social section before "That's my tech stack." */
    .social {
        margin-bottom: 30px !important;
    }

    /* Mobile touch animations for app icons */
    .lead:active .app-icon {
        opacity: 0.8;
        transform: rotate(0deg) scale(1.1);
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    }

    .lead:active .instagram-icon {
        opacity: 0.8;
        transform: scale(1.1);
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    }

    /* Also trigger when tapping directly on the icons */
    .app-icon:active {
        opacity: 0.8;
        transform: rotate(0deg) scale(1.1);
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    }

    .instagram-icon:active {
        opacity: 0.8;
        transform: scale(1.1);
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
    }

    .social h2:active .social-icon:nth-child(2) {
        transform: translateX(20px) rotate(0deg);
        transition-delay: 80ms;
    }

    .social h2:active .social-icon:nth-child(3) {
        transform: translateX(40px) rotate(0deg);
        transition-delay: 160ms;
    }

    .social-icons-stack:active .social-icon:nth-child(1) {
        transform: translateX(0px) rotate(0deg);
        transition-delay: 0ms;
    }

    .social-icons-stack:active .social-icon:nth-child(2) {
        transform: translateX(20px) rotate(0deg);
        transition-delay: 80ms;
    }

    .social-icons-stack:active .social-icon:nth-child(3) {
        transform: translateX(40px) rotate(0deg);
        transition-delay: 160ms;
    }

    /* Cookie Banner Small Mobile */
    .cookie-banner {
        padding: 12px 16px;
    }

    .cookie-content p {
        font-size: 12px;
    }

    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Tech Stack Small Mobile */
    .tech-list {
        gap: 20px;
    }

    .tech-item {
        gap: 10px;
    }

    .tech-content h3 {
        font-size: 16px;
    }

    .tech-content p {
        font-size: 12px;
    }

    .category h2 {
        font-size: 20px;
    }

    .tech-icon {
        width: 35px;
        height: 35px;
    }

    .tech-icon img {
        width: 35px;
        height: 35px;
    }
}

