* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Roadhouse Motor Brand Colors */
    --roadhouse-blue: #1696EF;
    --roadhouse-gold: #F2AD0F;
    --roadhouse-dark: #253237;
    --roadhouse-grey: #666666;
    --roadhouse-light: #f5f5f5;

    --primary-gradient: linear-gradient(135deg, #1696EF 0%, #0d6fb8 100%);
    --secondary-gradient: linear-gradient(135deg, #F2AD0F 0%, #d89a0d 100%);
    --instagram-gradient: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --facebook-gradient: linear-gradient(135deg, #4267B2 0%, #1877F2 100%);
    --triumph-gradient: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
    --special-gradient: linear-gradient(135deg, #F2AD0F 0%, #FFD700 50%, #FFA500 100%);

    --bg-dark: #253237;
    --bg-light: #f5f5f5;
    --bg-card: #ffffff;
    --text-primary: #253237;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --shadow: 0 8px 32px 0 rgba(37, 50, 55, 0.1);
    --shadow-hover: 0 12px 48px 0 rgba(22, 150, 239, 0.3);
    --glow: 0 0 20px rgba(22, 150, 239, 0.2);
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(22, 150, 239, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(242, 173, 15, 0.05) 0%, transparent 50%);
    animation: breathe 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes breathe {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.container {
    max-width: 680px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section {
    text-align: center;
    margin-bottom: 48px;
    animation: slideDown 0.8s ease-out 0.2s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow), var(--glow);
    animation: pulse 3s ease-in-out infinite;
    border: 4px solid rgba(22, 150, 239, 0.2);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-bio {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.link-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(22, 150, 239, 0.15);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: slideUp 0.6s ease-out both;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.link-button:hover::before {
    left: 0;
}

.link-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--roadhouse-blue);
    color: var(--text-light);
}

.link-button:active {
    transform: translateY(-2px) scale(0.98);
}

/* Stili specifici per ogni bottone */
.link-button.instagram::before {
    background: var(--instagram-gradient);
}

.link-button.instagram:hover {
    box-shadow: 0 12px 48px 0 rgba(188, 24, 136, 0.4);
}

.link-button.facebook::before {
    background: var(--facebook-gradient);
}

.link-button.facebook:hover {
    box-shadow: 0 12px 48px 0 rgba(24, 119, 242, 0.4);
}

.link-button.triumph::before {
    background: var(--triumph-gradient);
}

.link-button.triumph:hover {
    box-shadow: 0 12px 48px 0 rgba(200, 16, 46, 0.4);
}

.link-button.special::before {
    background: var(--special-gradient);
}

.link-button.special:hover {
    box-shadow: 0 12px 48px 0 rgba(255, 215, 0, 0.4);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#link-1 {
    animation-delay: 0.3s;
}

#link-2 {
    animation-delay: 0.4s;
}

#link-3 {
    animation-delay: 0.5s;
}

#link-4 {
    animation-delay: 0.6s;
}

#link-5 {
    animation-delay: 0.7s;
}

.link-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.link-button:hover .link-icon {
    transform: scale(1.2) rotate(5deg);
}

.link-text {
    flex: 1;
    text-align: center;
    margin: 0 12px;
}

.link-arrow {
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.link-button:hover .link-arrow {
    transform: translateX(5px);
}

.footer {
    text-align: center;
    padding: 24px 0;
    color: var(--text-secondary);
    font-size: 14px;
    animation: fadeIn 1s ease-out 0.8s both;
}

/* Responsive design */
@media (max-width: 768px) {
    .profile-name {
        font-size: 28px;
    }

    .profile-bio {
        font-size: 14px;
    }

    .link-button {
        padding: 18px 24px;
        font-size: 15px;
    }

    .link-icon {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 16px;
    }

    .profile-image {
        width: 100px;
        height: 100px;
    }

    .image-placeholder {
        font-size: 40px;
    }

    .profile-name {
        font-size: 24px;
    }

    .links-container {
        gap: 16px;
    }

    .link-button {
        padding: 16px 20px;
        font-size: 14px;
    }
}