@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=M+PLUS+Rounded+1c:wght@400;700&display=swap');
body {
    font-family: 'M PLUS Rounded 1c', 'Poppins', sans-serif;
    color: #5d4037;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: linear-gradient(
        rgba(255, 243, 224, 0.85),
        rgba(255, 243, 224, 0.85)
    ),
    url('img/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    user-select: none;
    min-height: 100vh;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}





.header-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-image: url('img/header.webp');
    background-size: 1120px auto;
    background-position: right 98% top 55%;
    padding: 20px 0;
    border: 3px solid rgba(255, 167, 38, 0.5);
    border-radius: 30px 30px 30px 30px;
    box-shadow: 0 8px 20px rgba(255, 167, 38, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.header-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine 10s infinite linear;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.header-wrapper .sparkle {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 3s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

header {
    text-align: center;
    padding: 10px;
    position: relative;
    z-index: 2;
}

.logo {
    width: 300px;
    height: 90px;
    object-fit: cover;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6)) brightness(1.1);
}


@keyframes puddingExplode {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1);
    }
}



.pudding-explosion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.pudding-particle {
    position: absolute;
    width: 32px;
    height: 32px;
    opacity: 0;
    animation: puddingExplode 2s ease-out forwards;
}

@keyframes puddingExplode {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translate(calc(var(--tx) * 0.5), calc(var(--ty) * 0.5)) scale(1) rotate(calc(var(--rotation) * 0.5));
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1) rotate(var(--rotation));
    }
}

.logo {
    cursor: pointer;
}




h1 {
    color: #c05f15;
    font-size: 2.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.mascot {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid #ffa726;
    margin: 20px auto;
    display: block;
    box-shadow: 0 0 15px rgba(255, 167, 38, 0.6);
    transition: all 0.5s ease;
    position: relative;
}

.mascot:hover {
    transform: scale(1.05);
    border-color: #ff9800;
    box-shadow: 0 0 25px rgba(255, 167, 38, 0.8),
                inset 0 0 15px rgba(255, 152, 0, 0.3);
}

.mascot::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 167, 38, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.mascot:hover::after {
    opacity: 1;
}
@keyframes sectionAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 8px 16px rgba(255, 167, 38, 0.15);
    border: 3px solid rgba(255, 167, 38, 0.3);
    backdrop-filter: blur(5px);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: sectionAppear 0.8s ease-out forwards;
    animation-play-state: paused;
}

.section.visible {
    animation-play-state: running;
}

.section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 167, 38, 0.2);
}

.section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 167, 38, 0.2), rgba(255, 243, 224, 0.2));
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section:hover::before {
    opacity: 1;
}
h2 {
    color: #ff9800;
    border-bottom: 3px dashed rgba(255, 152, 0, 0.5);
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 152, 0, 0.2);
}
h2::after {
    content: "🍮";
    position: absolute;
    right: 0;
    bottom: 5px;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.1));
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}
h2:hover::after {
    transform: rotate(10deg) scale(1.2);
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}
li:hover {
    transform: translateX(5px);
}
li::before {
    content: "🍮";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.1));
    transition: transform 0.2s ease;
}
li:hover::before {
    transform: translateY(-50%) rotate(15deg) scale(1.1);
}
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.social-links a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 446px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Add this line */

}
.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}
.social-links img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    flex-shrink: 0; /* Add this line */
}
.youtube { background-color: #FF0000; }
.twitter { background-color: #1DA1F2; }
.twitch { background-color: #9146FF; }
.booth { background-color: #FC4D50; }
.github { background-color: #24292e; }
.blog {
    background: linear-gradient(45deg, #FF9800, #FF5722);
    position: relative;
    overflow: hidden;
}
.blog::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    transform: rotate(45deg);
    animation: shimmerBlog 3s infinite linear;
}
@keyframes shimmerBlog {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}


@media (max-width: 600px) {
    .social-links {
        flex-direction: column;
    }
    .social-links a {
        width: 100%;
        max-width: none;
    }
}

.background-particle {
    position: fixed;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(255, 167, 38, 0.3), transparent);
    border-radius: 50%;
    z-index: 1;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translate(var(--moveX, 100px), var(--moveY, -100px)) rotate(360deg);
        opacity: 0;
    }
}
