/* =========================================
   1. CSS GLOBAL (PADRÃO)
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    padding-bottom: 50px;
}

/* Container Padronizado */
.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

/* --- HEADER --- */
header {
    background-color: #000;
    padding: 15px 0;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 40px;
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* MENU DESKTOP */
.desktop-nav {
    display: block;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.desktop-nav ul li {
    position: relative;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #FFC107;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.menu-btn:hover {
    color: #fff;
}

/* DROPDOWN MENU */
ul.dropdown-menu {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #111;
    min-width: 180px;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    z-index: 99999;
    margin-top: 10px;
}

ul.dropdown-menu.active {
    display: block !important;
    visibility: visible;
    opacity: 1;
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #ccc;
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background-color: #222;
    color: #d4af37;
}

/* HEADER ACTIONS (Ícones da direita) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #aaa;
    margin-left: auto;
}

.header-actions a,
.header-actions i {
    color: #aaa;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.login-text {
    font-size: 14px;
    font-weight: 600;
}

.filter-icon-mobile {
    display: none;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    margin-left: 20px;
}

/* SIDEBAR MOBILE */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #111;
    z-index: 2000;
    transition: left 0.3s ease;
    padding: 20px;
    overflow-y: auto;
    border-right: 1px solid #222;
}

.sidebar.active {
    left: 0;
}

.close-sidebar {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.sidebar-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 10px;
}

.profile-avatar {
    width: 70px;
    height: 70px;
    background-color: #8899a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
}

.profile-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 8px;
}

.sidebar-link {
    display: flex;
    width: 100%;
    padding: 12px 15px;
    color: #ddd;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 15px;
    background-color: #2a2a2a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.sidebar-link:hover {
    background-color: #3a3a3a;
    color: #fff;
}

.link-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chevron {
    color: #666;
    font-size: 12px;
}

.mobile-submenu {
    display: none;
    background-color: #1a1a1a;
    margin-top: 5px;
    border-radius: 6px;
    padding: 5px 0;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu li {
    margin-bottom: 0;
}

.mobile-submenu li a {
    padding: 10px 15px 10px 45px;
    font-size: 14px;
    color: #aaa;
    display: block;
    width: 100%;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
}

.mobile-submenu li a:hover {
    color: #fff;
    background-color: #222;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
}

.overlay.active {
    display: block;
}

/* Media Queries Globais do Header */
@media (max-width: 1250px) {
    .logo {
        margin-right: 20px;
    }

    .desktop-nav ul {
        gap: 15px;
    }

    .menu-btn {
        font-size: 14px;
    }
}

@media (max-width: 850px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .logo {
        margin-right: 0;
    }

    .filter-icon-mobile {
        display: block;
    }

    .login-text {
        display: none;
    }
}

/* --- FOOTER GLOBAL STYLES --- */
footer {
    background-color: #000;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-box {
    background-color: #080808;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 20px;
    height: 100%;
}

.footer-box h3 {
    color: #FFC107;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Nunito', sans-serif;
    transition: color 0.2s;
}

.footer-box ul li a:hover {
    color: #fff;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #1a1a1a;
    text-decoration: none;
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.news-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.news-meta {
    color: #666;
    font-size: 12px;
    font-family: 'Nunito', sans-serif;
}

.news-meta span {
    color: #d4af37;
}

/* Responsividade Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   2. HOME STYLE
   ========================================= */

/* Ajustes Swiper */
.swiper {
    width: 100%;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

/* Seção Cards Quadrados (Topo) */
.square-slide-section {
    margin-top: 1px;
    position: relative;
    z-index: 1;
}

.square-card {
    background-color: #222;
    height: 160px;
    width: 100%;
    overflow: hidden;
}

.square-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

/* Seção Stories */
.stories-section {
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}

.section-title {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-left: 5px;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: auto;
}

.story-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid red;
    padding: 1px;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    line-height: 0;
    flex: 0 0 80px;
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.story-trigger {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: block;
    width: 80px;
    height: 80px;
    line-height: 0;
}

.story-modal-open {
    overflow: hidden;
}

.story-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
}

.story-modal.active {
    display: flex;
}

.story-modal-content {
    position: relative;
    width: min(420px, calc(86vh * 9 / 16), 92vw);
    aspect-ratio: 9 / 16;
    max-height: 86vh;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    touch-action: manipulation;
}

.story-modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    min-height: 64px;
    padding: 16px 18px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    color: #fff;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
    font-size: 14px;
    font-weight: 700;
    pointer-events: none;
}

.story-modal-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    font-weight: 800;
    pointer-events: auto;
    text-decoration: none;
}

.story-modal-name:hover {
    color: #ffc107;
}

.story-modal-sound {
    position: absolute;
    top: 58px;
    right: 16px;
    z-index: 4;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 8px 11px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.story-modal-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.story-modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.story-modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
    -webkit-touch-callout: none;
    user-select: none;
}

.story-modal-close,
.story-modal-nav {
    position: fixed;
    z-index: 10000;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
}

.story-modal-close:hover,
.story-modal-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.story-modal-close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
}

.story-modal-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 72px;
    border-radius: 999px;
    font-size: 48px;
}

.story-modal-prev {
    left: max(16px, calc(50vw - 300px));
}

.story-modal-next {
    right: max(16px, calc(50vw - 300px));
}

.story-modal-nav:disabled {
    opacity: 0.28;
    cursor: default;
}

@media (max-width: 640px) {
    .story-modal {
        padding: 0;
    }

    .story-modal-content {
        width: min(100vw, calc(100vh * 9 / 16));
        max-width: 100vw;
        max-height: 100vh;
        aspect-ratio: 9 / 16;
        border: 0;
        border-radius: 0;
    }

    .story-modal-header {
        min-height: 72px;
        padding: 18px 58px 28px 16px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
    }

    .story-modal-sound {
        top: 62px;
        right: 12px;
    }

    .story-modal-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .story-modal-nav {
        width: 42px;
        height: 64px;
        font-size: 42px;
        background: rgba(0, 0, 0, 0.2);
    }

    .story-modal-prev {
        left: 8px;
    }

    .story-modal-next {
        right: 8px;
    }
}

/* Seção Catálogo (Grid Principal) */
.catalog-section {
    margin-top: 10px;
    margin-bottom: 40px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.catalog-item {
    position: relative;
    background-color: #222;
    overflow: hidden;
    display: block;
}

.catalog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 250 / 380;
}

.locked-model {
    position: relative;
}

.locked-model img {
    filter: blur(4px);
}

/* Responsividade do Grid */
@media (min-width: 600px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Seção de Informações (SEO Text) */
.info-section {
    background-color: #000;
    padding: 20px 0;
    margin-top: 40px;
}

.info-box {
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #050505;
}

.info-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-logo img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
}

.info-text {
    flex: 1.5;
    color: #ccc;
    font-size: 12px;
    line-height: 1.6;
}

.info-text h2 {
    color: #FFC107;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-text p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .info-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .info-text h2 {
        font-size: 16px;
    }
}

/* =========================================
   3. FILTRO STYLE
   ========================================= */

.filter-content {
    margin-top: 20px;
}

/* 1. CAIXA DE FILTROS */
.filter-container {
    background-color: #0d0d0d;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-label {
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    margin-left: 2px;
}

/* Inputs Estilizados */
.custom-select,
.custom-input-box {
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
    min-width: 160px;
    height: 35px;
    display: flex;
    align-items: center;
    font-family: 'Nunito', sans-serif;
}

/* Seta do Select via SVG Background */
select.custom-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 8px auto;
    padding-right: 25px;
}

/* Radio Group */
.radio-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    color: #333;
    border-radius: 4px;
    padding: 0 15px;
    height: 35px;
    font-size: 13px;
    font-weight: 600;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Altura */
.height-group {
    display: flex;
    gap: 5px;
}

.height-select {
    width: 70px;
    min-width: auto;
}

/* Checkbox */
.checkbox-container {
    background-color: #fff;
    color: #333;
    border-radius: 4px;
    padding: 0 10px;
    height: 35px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* 2. TEXTO QUANTIDADE */
.results-count {
    text-align: center;
    color: #FFC107;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 16px;
    margin: 20px 0 15px 0;
}

/* 3. GRID DE FOTOS */
.filter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

/* RESPONSIVIDADE GRADE */
@media (min-width: 600px) {
    .filter-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .filter-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .filter-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Responsividade Filtros (Mobile) */
@media (max-width: 768px) {
    .filter-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: end;
    }

    .custom-select,
    .radio-container,
    .checkbox-container {
        width: 100%;
        min-width: 0;
    }

    .filter-group {
        width: 100%;
    }

    .height-group {
        width: 100%;
    }

    .height-select {
        flex: 1;
        min-width: 0;
    }
}

/* =========================================
   4. CATEGORIA STYLE
   ========================================= */

.category-content {
    margin-top: 0;
}

/* BARRA DE TÍTULO */
.category-bar {
    width: 100%;
    background-color: #000;
    border: 1px solid #222;
    border-top: none;
    padding: 10px;
    text-align: center;
    margin-bottom: 5px;
}

.category-title {
    color: #FFC107;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* GRID DE FOTOS */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.category-item {
    position: relative;
    background-color: #222;
    overflow: hidden;
    aspect-ratio: 250 / 380;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.category-item:hover img {
    transform: scale(1.03);
}

/* RESPONSIVIDADE DA GRADE */
@media (min-width: 600px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* TEXTO SEO */
.category-seo-section {
    margin-top: 40px;
    margin-bottom: 20px;
}

.seo-box {
    background-color: #080808;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 40px;
}

.seo-title {
    color: #FFC107;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.seo-text {
    color: #ccc;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.seo-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .seo-box {
        padding: 20px;
    }
}

/* =========================================
   5. PROFILE STYLE
   ========================================= */

.profile-container {
    padding-top: 0;
}

.profile-layout {
    display: grid;
    grid-template-columns: 230px 1fr 270px;
    gap: 20px;
    align-items: start;
}

.profile-layout.model-self-preview {
    grid-template-columns: 230px minmax(0, 1fr);
}

/* --- MOBILE PROFILE HEADER --- */
.mobile-profile-header {
    display: none;
    margin-bottom: 20px;
    padding: 10px 0;
}

.mph-top-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mph-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #FFC107;
    padding: 2px;
    flex-shrink: 0;
}

.mph-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.mph-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mph-stats {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: #fff;
}

.mph-stat-item strong {
    color: #FFC107;
    font-size: 13px;
    font-weight: 800;
}

.mph-name {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    color: #FFC107;
    line-height: 1.2;
}

/* --- COLUNA ESQUERDA (DESKTOP) --- */
.profile-left-col {
    background-color: #000;
}

.status-badge {
    background-color: #052c05;
    color: #2ecc71;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    text-transform: uppercase;
    align-self: flex-start;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 10px;
    width: 100%;
}

.btn-action {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 11px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    width: 100%;
    white-space: nowrap;
    min-width: 0;
}

.btn-action-full {
    grid-column: 1 / -1;
}

.btn-action:hover {
    background-color: #333;
}

.btn-action svg {
    width: 22px;
    height: 22px;
}

.btn-follow {
    background-color: #FFC107;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    border: none;
    width: 83px;
    padding: 10px;
    border-radius: 8px;
    text-transform: capitalize;
    font-family: 'Nunito', sans-serif;
    margin: 0 auto 10px auto;
    cursor: pointer;
    display: block;
}

.desktop-only-info {
    display: block;
    text-align: center;
}

.profile-main-photo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #FFC107;
    padding: 4px;
    margin: 0 auto 10px;
}

.profile-main-photo-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.model-name {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    color: #FFC107;
    margin-bottom: 5px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.stat-item span {
    display: block;
    font-weight: 800;
    font-size: 14px;
    color: #FFC107;
    font-family: 'Nunito', sans-serif;
}

.stat-item small {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
}

.sidebar-accordion-item {
    background-color: #111;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.sidebar-accordion-header {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.sidebar-accordion-content {
    display: none;
    padding: 0;
}

.sidebar-accordion-content.active {
    display: block;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    font-size: 13px;
    padding: 10px 15px;
    border-bottom: none;
    line-height: 1.5;
}

.details-list li:nth-child(odd) {
    background-color: #1a1a1a;
}

.details-list li:nth-child(even) {
    background-color: #222;
}

.details-list li strong {
    color: #FFC107;
    font-weight: 700;
    font-size: 13px;
    margin-right: 5px;
}

.details-list li span {
    color: #ccc;
    font-weight: 400;
}

.details-list li span a {
    color: #FFC107;
    text-decoration: none;
}

.details-list li span a:hover {
    color: #fff;
}

/* --- COLUNA CENTRAL --- */
.profile-center-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photo-grid-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.photo-grid-item-vert {
    aspect-ratio: 250/380;
    background-color: #222;
    overflow: hidden;
}

.photo-grid-item-vert img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 15px 0;
    flex-wrap: wrap;
}

.media-tab-btn {
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}

.media-tab-btn:hover {
    opacity: 0.9;
}

.btn-yellow {
    background-color: #FFC107;
    color: #000;
}

.btn-dark {
    background-color: #1a1a1a;
    color: #aaa;
    border: 1px solid #333;
}

.btn-gold {
    background: linear-gradient(180deg, #cf9d2a 0%, #b8860b 100%);
    color: #000;
}

.media-tab-content {
    display: none;
}

.media-tab-content.active {
    display: block;
}

.media-grid-square {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.media-square-item {
    aspect-ratio: 1/1.6;
    background-color: #222;
    overflow: hidden;
}

.media-square-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-grid-item-vert img,
.media-square-item img {
    display: block;
}

.photo-grid-item-vert,
.media-square-item {
    line-height: 0;
}

/* --- BOTTOM AREA (Agora alinhada com a coluna central) --- */
.bottom-full-width {
    margin-top: 20px;
    grid-column: 2;
    /* Desktop: Alinha na coluna central */
}

.about-box {
    background-color: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.about-title {
    color: #FFC107;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.about-text {
    color: #ccc;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.report-btn-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-report {
    background: transparent;
    border: 1px solid #444;
    color: #666;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-title {
    text-align: center;
    color: #FFC107;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.related-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}

.related-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- COLUNA DIREITA --- */
.profile-right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget-box {
    background-color: #111;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #222;
}

.widget-title {
    color: #FFC107;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.widget-swiper {
    width: 100%;
    height: auto;
}

.gata-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    width: 100%;
}

.gata-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gata-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 10px;
    text-align: center;
}

.gata-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .profile-layout {
        grid-template-columns: 250px 1fr;
    }

    .profile-right-col {
        display: none;
    }
}

/* --- MEDIA QUERY MOBILE (768px) --- */
@media (max-width: 768px) {
    .profile-layout {
        display: flex;
        flex-direction: column;
    }

    .mobile-profile-header {
        display: block;
        order: 1;
    }

    .desktop-only-info {
        display: none;
    }

    .profile-center-col {
        order: 2;
    }

    .profile-left-col {
        order: 3;
        width: 100%;
        padding: 0;
        background: transparent;
    }

    /* Bottom Area no Mobile */
    .bottom-full-width {
        order: 4;
        grid-column: 1 / -1;
    }

    .profile-right-col {
        display: none;
    }

    .photo-grid-top {
        grid-template-columns: repeat(4, 1fr);
    }

    .media-grid-square {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar-accordion-item {
        margin-bottom: 0;
        border-radius: 0;
        border-bottom: none;
    }

    .sidebar-accordion-item:first-of-type {
        border-radius: 8px 8px 0 0;
    }

    .sidebar-accordion-item:last-of-type {
        border-radius: 0 0 8px 8px;
        border-bottom: 1px solid #222;
    }

    .sidebar-accordion-header {
        pointer-events: none;
        background-color: #111;
    }

    .sidebar-accordion-header i {
        display: none;
    }

    .sidebar-accordion-content {
        display: block !important;
        padding-top: 0;
    }

    .action-buttons {
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .photo-grid-top {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   6. SEJA MODELO STYLE
   ========================================= */

.register-page {
    padding: 40px 0;
}

.register-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* COLUNA DA DIREITA (TEXTO E LOGO) */
.register-info-col {
    padding-right: 20px;
}

.register-logo-large {
    width: 300px;
    margin-bottom: 30px;
}

.register-logo-large img {
    width: 100%;
    height: auto;
}

.register-title {
    color: #FFC107;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 28px;
    margin-bottom: 15px;
}

.register-subtitle {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.register-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* COLUNA DA ESQUERDA (FORMULÁRIO CARD) */
.register-form-card {
    background-color: #15151b;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #222;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.form-desc {
    font-size: 13px;
    color: #888;
}

/* STEPS (NUMERAÇÃO) */
.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    z-index: 0;
    transform: translateY(-50%);
}

.step-item {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #333;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    position: relative;
    z-index: 1;
    border: 2px solid #15151b;
    transition: all 0.3s;
}

.step-item.active {
    background-color: #FFC107;
    color: #000;
    border-color: #FFC107;
}

.step-item.completed {
    background-color: #052c05;
    color: #fff;
    border-color: #052c05;
}

/* INPUTS */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background-color: #25262e;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 12px 15px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: #FFC107;
}

.form-input::placeholder {
    color: #555;
}

/* UPLOAD BOX */
.upload-box {
    border: 2px dashed #444;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background-color: #1e1e24;
    cursor: pointer;
    transition: background 0.2s;
}

.upload-box:hover {
    background-color: #25262e;
}

.upload-icon {
    font-size: 30px;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.upload-text {
    font-size: 13px;
    color: #aaa;
    display: block;
}

.upload-sub {
    font-size: 11px;
    color: #555;
    display: block;
    margin-top: 5px;
}

/* BOTÕES DE NAVEGAÇÃO */
.form-nav-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 10px;
}

.btn-prev {
    background-color: transparent;
    border: 1px solid #444;
    color: #aaa;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

.btn-next {
    background-color: #E91E63;
    border: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    flex: 1;
    transition: background 0.2s;
}

.btn-next:hover {
    background-color: #c2185b;
}

/* CONTROLE DE ETAPAS */
.step-content {
    display: none;
    animation: fadeIn 0.4s;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .register-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .register-info-col {
        order: 1;
        text-align: center;
        padding-right: 0;
    }

    .register-logo-large {
        margin: 0 auto 30px auto;
    }

    .register-form-card {
        order: 2;
        padding: 25px;
    }
}

/* =========================================
   BUSCA NO HEADER
   ========================================= */
.header-search {
    display: none;
    margin-right: 15px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.search-form:focus-within {
    border-color: #FFC107;
}

.search-input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 15px;
    font-size: 13px;
    width: 180px;
    outline: none;
}

.search-input::placeholder {
    color: #666;
}

.search-btn {
    background: transparent;
    border: none;
    color: #FFC107;
    padding: 8px 12px;
    cursor: pointer;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #fff;
}

@media (min-width: 992px) {
    .header-search {
        display: block;
    }
}

/* Mobile Search (em linha separada) */
.mobile-search {
    display: block;
    padding: 15px;
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
}

.mobile-search .search-form {
    width: 100%;
}

.mobile-search .search-input {
    width: 100%;
    flex: 1;
}

@media (min-width: 992px) {
    .mobile-search {
        display: none;
    }
}

/* Indicador Online nos Cards */
.model-card-wrapper {
    position: relative;
}

.online-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #22c55e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.online-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-online 1.5s infinite;
}

@keyframes pulse-online {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Story Online - Borda verde pulsante */
.story-circle.story-online {
    border: 3px solid #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Square card wrapper para badge */
.square-card {
    position: relative;
}

.square-card .online-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
}

.square-card a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 0;
}

/* Catalog item wrapper */
.catalog-item.model-card-wrapper {
    position: relative;
}

/* =========================================
   MODAL DE BUSCA
   ========================================= */
.search-icon-btn {
    color: #FFC107;
    font-size: 18px;
    padding: 8px;
    transition: color 0.3s;
}

.search-icon-btn:hover {
    color: #fff;
}

.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.search-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.search-modal-close:hover {
    color: #fff;
}

.search-modal-title {
    color: #FFC107;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.search-modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-modal-input {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-modal-input:focus {
    border-color: #FFC107;
}

.search-modal-input::placeholder {
    color: #666;
}

.search-modal-btn {
    background: #FFC107;
    border: none;
    border-radius: 8px;
    color: #000;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.search-modal-btn:hover {
    background: #e6ac00;
}

/* =========================================
   PERFIL - STATUS BADGES
   ========================================= */
.status-badge.online {
    background: #22c55e;
    color: #fff;
}

.status-badge.offline {
    background: #666;
    color: #ccc;
}

/* =========================================
   PERFIL - VIDEO PLAY ICON
   ========================================= */
.video-item {
    position: relative;
    cursor: pointer;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.video-item:hover .video-play-icon {
    background: #FFC107;
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
}

/* =========================================
   PERFIL - MEDIA TABS ACTIVE STATE
   ========================================= */
.media-tab-btn.active {
    background: #FFC107 !important;
    color: #000 !important;
}

/* =========================================
   PERFIL - GATA CARD LINK
   ========================================= */
a.gata-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.gata-card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s;
}

a.related-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

a.related-item:hover img {
    transform: scale(1.05);
    transition: transform 0.3s;
}

/* =========================================
   MODAL DE AUTENTICAÇÃO
   ========================================= */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-content {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.auth-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
}

.auth-modal-close:hover {
    color: #fff;
}

.auth-tab {
    display: none;
}

.auth-tab.active {
    display: block;
}

.auth-title {
    color: #FFC107;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-field label {
    display: block;
    color: #aaa;
    font-size: 13px;
    margin-bottom: 5px;
}

.auth-field input {
    width: 100%;
    padding: 12px 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
}

.auth-field input:focus {
    border-color: #FFC107;
    outline: none;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.auth-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #FFC107;
}

.auth-checkbox label {
    color: #aaa;
    font-size: 12px;
    line-height: 1.4;
}

.auth-checkbox label a {
    color: #FFC107;
    text-decoration: none;
}

.auth-btn {
    background: #FFC107;
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

.auth-btn:hover {
    background: #e6ad00;
}

.auth-message {
    text-align: center;
    font-size: 13px;
    min-height: 20px;
}

.auth-switch {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-top: 20px;
}

.auth-switch a {
    color: #FFC107;
    text-decoration: none;
}

/* =========================================
   PÁGINAS DO USUÁRIO
   ========================================= */
.user-page {
    padding: 30px 0;
    min-height: 60vh;
}

.user-header {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FFC107;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h1 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
}

.user-info p {
    color: #888;
    font-size: 14px;
}

.user-stats {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.user-stat {
    text-align: center;
}

.user-stat span {
    display: block;
    color: #FFC107;
    font-size: 20px;
    font-weight: 700;
}

.user-stat small {
    color: #888;
    font-size: 12px;
}

.user-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.user-nav a {
    padding: 10px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.user-nav a:hover,
.user-nav a.active {
    background: #FFC107;
    color: #000;
    border-color: #FFC107;
}

.user-section {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.user-section h2 {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}

.user-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.user-message.success {
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.45);
    color: #7ee083;
}

.user-message.error {
    background: rgba(244, 67, 54, 0.12);
    border: 1px solid rgba(244, 67, 54, 0.45);
    color: #ff7770;
}

.affiliate-intro p,
.affiliate-rules li {
    color: #bbb;
    line-height: 1.6;
}

.affiliate-rules {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid #2b2b2b;
    border-radius: 10px;
    padding: 18px;
    margin: 20px 0;
}

.affiliate-rules h3 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
}

.affiliate-rules ul {
    margin: 0;
    padding-left: 20px;
}

.affiliate-terms-form {
    display: grid;
    gap: 16px;
}

.affiliate-terms-check {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #ddd;
    cursor: pointer;
}

.affiliate-terms-check input {
    width: 18px;
    height: 18px;
    accent-color: #FFC107;
}

.affiliate-link-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.affiliate-link-box input {
    width: 100%;
    background: #0c0c0c;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    padding: 12px;
}

.affiliate-link-box button {
    background: #FFC107;
    color: #111;
    border: 0;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
}

.affiliate-stats {
    margin-top: 12px;
}

.affiliate-table-wrap {
    overflow-x: auto;
}

.affiliate-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.affiliate-table th,
.affiliate-table td {
    padding: 12px;
    border-bottom: 1px solid #222;
    text-align: left;
    color: #ddd;
    vertical-align: top;
}

.affiliate-table th {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.affiliate-table small {
    color: #888;
}

.affiliate-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    background: #222;
    color: #bbb;
}

.affiliate-badge.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
}

.affiliate-badge.converted,
.affiliate-badge.paid {
    background: rgba(76, 175, 80, 0.15);
    color: #7ee083;
}

.affiliate-badge.cancelled {
    background: rgba(244, 67, 54, 0.15);
    color: #ff7770;
}

.following-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.following-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s;
}

.following-card:hover {
    transform: translateY(-5px);
}

.following-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.following-card-info {
    padding: 10px;
    text-align: center;
}

.following-card-info span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.following-card .online-badge {
    display: inline-block;
    background: #4CAF50;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-top: 5px;
}

.settings-form {
    max-width: 500px;
}

.settings-form .auth-field {
    margin-bottom: 20px;
}

.settings-form .auth-btn {
    width: auto;
    padding: 12px 30px;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #666;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #333;
}

@media (max-width: 768px) {
    .user-header {
        flex-direction: column;
        text-align: center;
    }

    .user-stats {
        justify-content: center;
    }

    .user-nav {
        justify-content: center;
    }

    .affiliate-link-box {
        grid-template-columns: 1fr;
    }
}

.text-center {
    text-align: center;
}
