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

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(45, 10, 10, 0.75) 100%), 
                url('assets/images/sushi.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: fixed;
    opacity: 1;
    z-index: 0;
    font-size: 60px;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
}

.icon-1 { 
    animation: bounce1 15s linear infinite;
}

.icon-2 { 
    animation: bounce2 18s linear infinite;
}

.icon-3 { 
    animation: bounce3 20s linear infinite;
}

.icon-4 { 
    animation: bounce4 17s linear infinite;
}

.icon-5 { 
    animation: bounce5 16s linear infinite;
}

.icon-6 { 
    animation: bounce6 19s linear infinite;
}

@keyframes bounce1 {
    0% { left: 5%; top: 10%; transform: rotate(0deg); }
    25% { left: 85%; top: 20%; transform: rotate(90deg); }
    50% { left: 80%; top: 80%; transform: rotate(180deg); }
    75% { left: 10%; top: 70%; transform: rotate(270deg); }
    100% { left: 5%; top: 10%; transform: rotate(360deg); }
}

@keyframes bounce2 {
    0% { right: 5%; top: 15%; transform: rotate(0deg); }
    25% { right: 80%; top: 75%; transform: rotate(90deg); }
    50% { right: 85%; top: 25%; transform: rotate(180deg); }
    75% { right: 10%; top: 85%; transform: rotate(270deg); }
    100% { right: 5%; top: 15%; transform: rotate(360deg); }
}

@keyframes bounce3 {
    0% { left: 10%; bottom: 15%; transform: rotate(0deg); }
    25% { left: 80%; bottom: 70%; transform: rotate(90deg); }
    50% { left: 15%; bottom: 80%; transform: rotate(180deg); }
    75% { left: 85%; bottom: 20%; transform: rotate(270deg); }
    100% { left: 10%; bottom: 15%; transform: rotate(360deg); }
}

@keyframes bounce4 {
    0% { right: 8%; top: 30%; transform: rotate(0deg); }
    25% { right: 75%; top: 80%; transform: rotate(90deg); }
    50% { right: 10%; top: 15%; transform: rotate(180deg); }
    75% { right: 85%; top: 65%; transform: rotate(270deg); }
    100% { right: 8%; top: 30%; transform: rotate(360deg); }
}

@keyframes bounce5 {
    0% { left: 50%; bottom: 25%; transform: rotate(0deg); }
    25% { left: 15%; bottom: 75%; transform: rotate(90deg); }
    50% { left: 75%; bottom: 80%; transform: rotate(180deg); }
    75% { left: 85%; bottom: 30%; transform: rotate(270deg); }
    100% { left: 50%; bottom: 25%; transform: rotate(360deg); }
}

@keyframes bounce6 {
    0% { left: 45%; top: 20%; transform: rotate(0deg); }
    25% { left: 80%; top: 70%; transform: rotate(90deg); }
    50% { left: 20%; top: 75%; transform: rotate(180deg); }
    75% { left: 10%; top: 25%; transform: rotate(270deg); }
    100% { left: 45%; top: 20%; transform: rotate(360deg); }
}

.container {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    animation: floatLogo 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(220, 20, 60, 0.6));
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) scale(1.05) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) scale(1.02) rotate(-1deg);
    }
    75% {
        transform: translateY(-25px) scale(1.08) rotate(1deg);
    }
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border: 3px solid rgba(220, 20, 60, 0.8);
    box-shadow: 0 0 50px rgba(220, 20, 60, 0.5),
                0 0 100px rgba(220, 20, 60, 0.3),
                inset 0 0 30px rgba(220, 20, 60, 0.1);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(220, 20, 60, 0.5),
                    0 0 60px rgba(220, 20, 60, 0.3),
                    inset 0 0 20px rgba(220, 20, 60, 0.1);
        border-color: rgba(220, 20, 60, 0.8);
    }
    50% {
        box-shadow: 0 0 50px rgba(220, 20, 60, 0.8),
                    0 0 100px rgba(220, 20, 60, 0.5),
                    inset 0 0 40px rgba(220, 20, 60, 0.2);
        border-color: rgba(255, 20, 60, 1);
    }
}

.title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.8),
                 0 4px 15px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.title span {
    font-size: 1.3rem;
    font-weight: 400;
    display: block;
    margin-top: 5px;
    opacity: 0.95;
    color: #DC143C;
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.link-button {
    background: rgba(20, 20, 20, 0.95);
    padding: 20px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
                inset 0 0 20px rgba(220, 20, 60, 0.1);
    border: 2px solid rgba(220, 20, 60, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.link-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.4),
                inset 0 0 30px rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 1);
    background: rgba(30, 10, 10, 0.95);
}

.link-button:active {
    transform: translateY(-2px) scale(1);
}

.icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #DC143C, #8B0000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.5);
}

.link-button:hover .icon {
    transform: rotate(360deg);
    box-shadow: 0 0 25px rgba(220, 20, 60, 0.8);
}

.icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.link-button.ifood .icon {
    background: linear-gradient(135deg, #EA1D2C, #ff4444);
}

.link-button.whatsapp .icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    padding: 20px;
    backdrop-filter: blur(10px);
    background: rgba(220, 20, 60, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.footer p {
    margin-bottom: 15px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #FD1D1D);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.instagram-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(225, 48, 108, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
}

.instagram-link:active {
    transform: translateY(-1px) scale(1.02);
}

.instagram-link svg {
    width: 24px;
    height: 24px;
    color: white;
}

.instagram-link span {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }

    .title span {
        font-size: 1.1rem;
    }

    .link-button {
        padding: 18px 25px;
        font-size: 1rem;
    }

    .logo {
        max-width: 260px;
        padding: 12px;
    }

    .floating-food img {
        width: 100px;
        height: 100px;
    }

    .instagram-link {
        padding: 10px 20px;
        font-size: 0.95rem;
        gap: 8px;
    }

    .instagram-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 0 5px;
    }

    .title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .title span {
        font-size: 0.95rem;
    }

    .link-button {
        padding: 15px 18px;
        font-size: 0.9rem;
        gap: 12px;
    }

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

    .icon svg {
        width: 20px;
        height: 20px;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .logo {
        max-width: 85%;
        padding: 10px;
        border-width: 2px;
    }

    .floating-food img {
        width: 70px;
        height: 70px;
    }

    .footer {
        padding: 15px;
        font-size: 0.85rem;
    }

    .footer p {
        margin-bottom: 12px;
        font-size: 0.8rem;
    }

    .instagram-link {
        padding: 10px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .instagram-link svg {
        width: 18px;
        height: 18px;
    }

    .instagram-link span {
        font-size: 0.85rem;
    }
}
