/* =====================================================
   NULLIFY CLANS — GLASSMORPHISM STYLE
===================================================== */

.nc-profile-clan {
    position: relative;
    margin-top: 40px;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: linear-gradient(145deg, rgba(20,20,35,0.65), rgba(30,30,55,0.45));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    overflow: hidden;
    transition: 0.3s ease;
}

.nc-profile-clan:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

/* =====================================================
   BANNER
===================================================== */

.nc-clan-banner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: blur(6px) brightness(0.6);
    transform: scale(1.05);
    z-index: 0;
}

.nc-profile-clan::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,20,0.8), rgba(10,10,20,0.95));
    z-index: 1;
}

.nc-profile-clan > * {
    position: relative;
    z-index: 2;
}

/* =====================================================
   HEADER
===================================================== */

.block-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.block-header h2 span {
    color: #8f9fff;
}

/* =====================================================
   META SECTION
===================================================== */

.nc-clan-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.nc-clan-avatar {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nc-clan-points {
    font-size: 18px;
    font-weight: 600;
    color: #cfd4ff;
}

/* =====================================================
   MEMBERS GRID
===================================================== */

.nc-clan-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.nc-member-mini {
    text-align: center;
    padding: 15px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.nc-member-mini:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.nc-member-mini img {
    border-radius: 50%;
    margin-bottom: 8px;
}

.nc-member-mini span {
    display: block;
    font-size: 13px;
    color: #e0e4ff;
    word-break: break-word;
}

/* =====================================================
   BUTTONS
===================================================== */

.nc-clan-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.nc-btn,
.nc-btn-primary {
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

/* Secondary button */

.nc-btn {
    background: rgba(255,255,255,0.06);
    color: #cfd4ff;
}

.nc-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Primary button */

.nc-btn-primary {
    background: linear-gradient(135deg, rgba(120,140,255,0.8), rgba(160,100,255,0.7));
    color: #fff;
    border: none;
}

.nc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(130,120,255,0.6);
}

/* =====================================================
   FORM STYLES
===================================================== */

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

.nc-form input,
.nc-form select {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    backdrop-filter: blur(10px);
    outline: none;
}

.nc-form input:focus,
.nc-form select:focus {
    border-color: rgba(140,150,255,0.6);
    box-shadow: 0 0 15px rgba(120,130,255,0.4);
}

.nc-form button {
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(120,140,255,0.9), rgba(160,100,255,0.8));
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.nc-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(130,120,255,0.6);
}

/* =====================================================
   ALERTS
===================================================== */

.nc-error,
.nc-success {
    padding: 14px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}

.nc-error {
    background: rgba(255,70,70,0.15);
    color: #ff8c8c;
}

.nc-success {
    background: rgba(80,255,150,0.15);
    color: #8cffc7;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .nc-profile-clan {
        padding: 20px;
    }

    .nc-clan-meta {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .nc-clan-actions {
        flex-direction: column;
        width: 100%;
    }

    .nc-btn,
    .nc-btn-primary {
        width: 100%;
        text-align: center;
    }

    .block-header h2 {
        font-size: 20px;
    }
	
}/* =====================================================
   NULLIFY RUST — CLAN PROFILE BLOCK
   Glassmorphism UI
===================================================== */

.profile-clan-block {
    position: relative;
    margin-top: 25px;
    padding: 20px;
    border-radius: 18px;
    overflow: hidden;

    background: rgba(18, 22, 28, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}

.profile-clan-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

/* =====================================================
   HEADER
===================================================== */

.profile-clan-block .block-header h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

/* =====================================================
   BANNER
===================================================== */

.clan-banner {
    position: relative;
    height: 120px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.clan-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.8)
    );
}

/* =====================================================
   CLAN INFO
===================================================== */

.clan-info {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.clan-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.clan-points {
    font-size: 14px;
    color: #9ca3af;
}

/* =====================================================
   MEMBERS PREVIEW
===================================================== */

.clan-members-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.clan-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.clan-member:hover {
    transform: scale(1.08);
}

.clan-member img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    margin-bottom: 6px;
    transition: border 0.3s ease;
}

.clan-member:hover img {
    border: 2px solid #ff6b00;
}

.clan-member span {
    font-size: 12px;
    color: #cbd5e1;
    max-width: 70px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =====================================================
   BUTTONS
===================================================== */

.clan-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nc-btn-primary,
.nc-btn-secondary {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.nc-btn-primary {
    background: linear-gradient(135deg, #ff6b00, #ff4500);
    color: #ffffff;
    border: none;
}

.nc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.4);
}

.nc-btn-secondary {
    background: rgba(255,255,255,0.05);
    color: #e5e7eb;
    border: 1px solid rgba(255,255,255,0.08);
}

.nc-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* =====================================================
   EMPTY STATE
===================================================== */

.clan-empty {
    padding: 15px;
    text-align: center;
    color: #9ca3af;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    font-size: 14px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .profile-clan-block {
        padding: 16px;
    }

    .clan-members-preview {
        justify-content: center;
    }

    .clan-actions {
        flex-direction: column;
    }

    .nc-btn-primary,
    .nc-btn-secondary {
        width: 100%;
        text-align: center;
    }
}.profile-clan-block {
    position: relative;
    margin-top: 20px;
    padding: 20px;
    border-radius: 2px;
    overflow: hidden;
    background: rgba(18, 22, 28, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}
/* --- Основной контейнер страницы --- */
.nc-clan-panel {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    color: #eee;
    font-family: 'Roboto', sans-serif;
}

/* --- Заголовки --- */
.nc-clan-panel h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nc-clan-panel h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
}

/* --- Участники --- */
.nc-member, .nc-application {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.nc-member:hover, .nc-application:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* --- Аватар участника --- */
.nc-member img, .nc-application img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

/* --- Имя пользователя --- */
.nc-member span, .nc-application span {
    font-weight: 500;
    font-size: 1rem;
}

/* --- Кнопки --- */
.nc-member button, .nc-application button, .nc-clan-panel button {
    background: linear-gradient(135deg, #6e48aa, #9d50bb);
    border: none;
    padding: 6px 14px;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nc-member button:hover, .nc-application button:hover, .nc-clan-panel button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* --- Формы --- */
.nc-form input[type="text"],
.nc-form select,
.nc-form input[type="file"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,0.05);
    color: #eee;
    font-size: 1rem;
}

.nc-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

/* --- Кнопка создания клана --- */
.nc-form button {
    width: 100%;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    padding: 12px;
    font-size: 1rem;
}

/* --- Сообщения об успехе/ошибке --- */
.nc-success, .nc-error {
    padding: 12px 16px;
    margin-bottom: 15px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
}

.nc-success {
    background: rgba(50, 200, 150, 0.3);
    color: #0f9d58;
}

.nc-error {
    background: rgba(255, 50, 50, 0.3);
    color: #ff4b2b;
}

/* --- Адаптив --- */
@media (max-width: 768px) {
    .nc-clan-panel {
        padding: 20px;
    }
    .nc-member img, .nc-application img {
        width: 40px;
        height: 40px;
    }
    .nc-member button, .nc-application button {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
}.page-title {
    display: none;
}