* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Comic Sans MS', 'Trebuchet MS', sans-serif;
    background: linear-gradient(180deg, #f5e6d3 0%, #efe0ce 50%, #f5e6d3 100%);
    color: #4a3728;
    line-height: 1.6;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('assets/images/fimtyfop.JPEG');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
    pointer-events: none;
}

header {
    background: linear-gradient(90deg, #FF8C00 0%, #FF7A3D 25%, #D2691E 75%, #A0522D 100%);
    text-align: center;
    padding: 1rem 2rem 3rem 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.navbar {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff 0%, #fff9f0 50%, #ffe6cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

main {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 2rem;
}
section {
    background: linear-gradient(135deg, #faf3e6 0%, #f5e6d3 50%, #faf3e6 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 12px rgba(255, 107, 53, 0.3), inset 0 0 20px rgba(255, 140, 0, 0.1);
    border: 4px solid #FF8C00;
}

section h2 {
    background: linear-gradient(90deg, #FF8C00 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

section p {
    margin-bottom: 1rem;
    color: #4a3728;
    font-size: 1rem;
}

section a {
    background: linear-gradient(90deg, #FF8C00 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
}

section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF8C00 0%, #FF6B35 100%);
    transition: width 0.3s ease;
}

section a:hover::after {
    width: 100%;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #4a3728;
    font-size: 0.95rem;
    background: transparent;
    border: none;
}

.avatar-container {
    margin: 0 auto 1rem;
    display: inline-block;
    width: fit-content;
    position: relative;
}

.avatar-container::before {
    content: '';
    position: absolute;
    width: 162px;
    height: 162px;
    border-radius: 50%;
    background: conic-gradient(
        #ff0000,
        #ffff00,
        #00ff00,
        #00ffff,
        #0000ff,
        #ff00ff,
        #ff0000
    );
    animation: rainbowFlow 6s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.fox-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

@keyframes rainbowFlow {
    0% {
        background: conic-gradient(
            #ff0000,
            #ffff00,
            #00ff00,
            #00ffff,
            #0000ff,
            #ff00ff,
            #ff0000
        );
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        background: conic-gradient(
            #ff0000,
            #ffff00,
            #00ff00,
            #00ffff,
            #0000ff,
            #ff00ff,
            #ff0000
        );
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

section.video {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

section.video video {
    border-radius: 10px;
    background: #000;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.embed-container {
    width: 100%;
    margin: 1.5rem 0 0 0;
}

.embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.2);
}

.embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 1.5rem;
    }
}
