* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
    position: relative;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.main-title {
    font-size: 20vw;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    position: relative;
    line-height: 1;
}

.exponent {
    position: relative;
    font-size: 0.4em;
    top: -0.9em;
    left: 0.2em;
}

.contact-link {
    position: absolute;
    bottom: 40px;
    font-size: 1.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    max-width: 200px;
    backdrop-filter: blur(5px);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-container, .furry-container {
    text-align: center;
    max-width: 800px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.icon {
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.icon:hover::before {
    transform: rotate(45deg) translate(20%, 20%);
}

.icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.bilibili-icon {
    background: linear-gradient(135deg, #00a1d6, #005eab);
}

.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.back-link {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.furry-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.furry-text {
    font-size: 2rem;
    margin: 20px 0;
    line-height: 1.6;
}

.furry-text:first-child {
    color: #4ecdc4;
}

.furry-text:last-child {
    color: #ffe66d;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 25vw;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .icon {
        width: 120px;
        height: 120px;
    }
    
    .icon-img {
        width: 50px;
        height: 50px;
    }
    
    .furry-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 30vw;
    }
    
    .social-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .furry-title {
        font-size: 2rem;
    }
    
    .furry-text {
        font-size: 1.3rem;
    }
}