* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #111626;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    pointer-events: none;
    z-index: -1;
}

.header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(45deg, rgba(6, 105, 205, 0.1), rgba(0, 191, 255, 0.1));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    margin-bottom: 20px;
}

.developer-logo {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.developer-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #0669CD, #00BFFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(6, 105, 205, 0.5);
}

.subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.description {
    font-size: 1.1rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.streamers-container {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.streamers-section {
    margin-bottom: 60px;
}

.streamers-section:last-child {
    margin-bottom: 0;
}

.section-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #0669CD, #00BFFF);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 20px rgba(6, 105, 205, 0.3);
}

.members-info {
    text-align: center;
    padding: 20px;
    margin-bottom: 25px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}

.members-info p {
    color: #FFD700;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.streamer-card {
    background: linear-gradient(145deg, rgba(6, 105, 205, 0.1), rgba(0, 191, 255, 0.1));
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(6, 105, 205, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


.streamer-card:hover::before {
    left: 100%;
}

.streamer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(6, 105, 205, 0.4);
    border-color: rgba(0, 191, 255, 0.6);
}

.streamer-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.streamer-info {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #00BFFF;
}

.streamer-tipo {
    font-weight: 600;
}

.streamer-cargo {
    font-style: italic;
    color: #cccccc;
}

.live-platforms {
    margin-bottom: 15px;
}

.live-title {
    text-align: center;
    font-size: 14px;
    color: #00BFFF;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.platform-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.platform-link:hover::before {
    width: 100px;
    height: 100px;
}

.platform-link.twitch:hover {
    border-color: #9146ff;
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.5);
    transform: scale(1.1);
}

.platform-link.kick:hover {
    border-color: #32cd32;
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.5);
    transform: scale(1.1);
}

.platform-link.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transform: scale(1.1);
}

.platform-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    z-index: 1;
    position: relative;
}

.platform-link.unavailable {
    background: #1a1a1a;
    cursor: not-allowed;
    position: relative;
    flex-direction: column;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.platform-link.unavailable:hover {
    transform: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

.platform-link.unavailable::before {
    display: none;
}

.unavailable-logo {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
}

.unavailable-text {
    font-size: 7px;
    color: #ccc;
    text-align: center;
    z-index: 1;
    position: relative;
    font-weight: 400;
    line-height: 1;
}

/* Estilos para redes sociais */
.social-platforms {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-title {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link.instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
}

.social-link.tiktok:hover {
    border-color: #ff0050;
    box-shadow: 0 0 15px rgba(255, 0, 80, 0.5);
}

.social-link.youtube-social:hover {
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.social-link.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

.social-link.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 0 15px rgba(29, 161, 242, 0.5);
}

.social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(6, 105, 205, 0.2));
    border-top: 1px solid rgba(0, 191, 255, 0.3);
    margin-top: 60px;
}

.footer p {
    color: #888;
    font-size: 0.9rem;
}

/* Estilos para streamers fixados */
.streamer-card-fixed {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.08), rgba(6, 105, 205, 0.12), rgba(0, 191, 255, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.streamer-card-fixed:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2), 0 20px 40px rgba(6, 105, 205, 0.2);
}

.fixed-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 16px;
    opacity: 0.7;
}

/* Estilos para a pesquisa de membros */
.search-container {
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.btn-show-all {
    padding: 12px 24px;
    background: linear-gradient(45deg, #0669CD, #00BFFF);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-show-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 105, 205, 0.4);
}

/* Seção de Contato */
.contact-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(6, 105, 205, 0.05), rgba(0, 191, 255, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(145deg, rgba(6, 105, 205, 0.1), rgba(0, 191, 255, 0.1));
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(6, 105, 205, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.contact-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-instagram-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-instagram-icon {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.contact-instagram-link:hover .contact-instagram-icon {
    transform: scale(1.2) rotate(5deg);
}

.contact-info span {
    color: #00BFFF;
    font-size: 0.95rem;
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-card {
        padding: 20px;
    }

    .main-title {
        font-size: 2.5rem;
    }
    
    .streamers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 0 !important;
    }

    .streamers-container {
        padding: 20px 20px;
    }

    .platforms {
        gap: 10px;
    }

    .footer {
        margin-top: 0; 
    }
    
    .search-box {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }
    
    .floating-input-container,
    .custom-select-container,
    .btn-show-all {
        width: 100%;
        max-width: none;
    }
}