/* ============================= */
/* RESET */
/* ============================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI', Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0,247,255,0.08), transparent 26%),
        radial-gradient(circle at bottom right, rgba(124,58,237,0.14), transparent 30%),
        linear-gradient(135deg,#0b1220 0%,#070d18 100%);
    color:#ffffff;
    min-height:100vh;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
}

button,
input,
textarea,
select{
    font:inherit;
}

textarea{
    resize:vertical;
}

/* ============================= */
/* UTILITIES */
/* ============================= */

.glass{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.10);
    box-shadow:0 10px 30px rgba(0,0,0,0.22);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    margin-bottom:28px;
}

.neon-btn,
.outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-decoration:none;
    padding:12px 18px;
    border-radius:12px;
    font-weight:700;
    transition:.25s ease;
    cursor:pointer;
}

.neon-btn{
    color:#fff;
    background:linear-gradient(135deg,#00f7ff,#7c3aed);
    border:none;
    box-shadow:0 0 16px rgba(0,247,255,0.16);
}

.neon-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 22px rgba(0,247,255,0.22);
}

.outline-btn{
    color:#fff;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);
}

.outline-btn:hover{
    transform:translateY(-2px);
    border-color:rgba(0,247,255,0.25);
    box-shadow:0 0 16px rgba(0,247,255,0.10);
}

.form-message{
    margin-bottom:16px;
    padding:14px 16px;
    border-radius:14px;
    font-size:14px;
    line-height:1.6;
}

.error-box{
    background:rgba(255,75,92,0.12);
    border:1px solid rgba(255,75,92,0.28);
    color:#ffb4bc;
}

.success-box{
    background:rgba(0,255,156,0.12);
    border:1px solid rgba(0,255,156,0.24);
    color:#9cffd0;
}

.muted{
    color:#9fb0c9;
}

.page-wrap{
    max-width:1280px;
    margin:36px auto 60px;
    padding:0 20px;
}

.section-title-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
    flex-wrap:wrap;
}

/* ============================= */
/* HEADER */
/* ============================= */

.main-site-header{
    position:sticky;
    top:0;
    z-index:1100;
    padding:16px 20px 0;
}

.main-site-header-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:14px 18px;
    border-radius:20px;
}

.main-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    flex-shrink:0;
}

.main-brand-icon{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:linear-gradient(135deg,#00f7ff,#7c3aed);
    font-size:18px;
    color:#fff;
}

.main-brand-text{
    font-size:20px;
    font-weight:700;
    color:#ffffff;
}

.main-nav-toggle{
    display:none;
    font-size:24px;
    background:none;
    border:none;
    color:#ffffff;
    cursor:pointer;
}

.main-header-right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:16px;
    flex:1;
}

.main-site-nav{
    display:flex;
    align-items:center;
    gap:14px;
}

.main-site-nav a{
    color:#e2e8f0;
    text-decoration:none;
    font-size:14px;
    padding:8px 10px;
    border-radius:8px;
    transition:.2s;
    font-weight:500;
}

.main-site-nav a:hover{
    color:#00f7ff;
    background:rgba(255,255,255,0.05);
}

.main-header-search{
    display:flex;
    align-items:center;
    gap:6px;
}

.main-header-search input{
    padding:8px 12px;
    border-radius:8px;
    border:none;
    background:rgba(255,255,255,0.08);
    color:#ffffff;
    outline:none;
    min-width:220px;
}

.main-header-search input::placeholder{
    color:#aab7cb;
}

.main-header-search button{
    border:none;
    background:transparent;
    color:#ffffff;
    cursor:pointer;
    font-size:16px;
}

.main-header-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.main-action-btn{
    padding:8px 12px;
    border-radius:8px;
    text-decoration:none;
    background:rgba(255,255,255,0.08);
    color:#ffffff;
    font-size:14px;
    transition:.2s;
    border:1px solid rgba(255,255,255,0.08);
}

.main-action-btn:hover{
    background:rgba(255,255,255,0.15);
}

.neon-mini{
    border:1px solid #00f7ff;
    color:#00f7ff;
}

.logout-mini{
    border:1px solid #ff4b5c;
    color:#ff4b5c;
}

/* ============================= */
/* HERO / HOMEPAGE */
/* ============================= */

.home-page-wrap{
    max-width:1280px;
    margin:36px auto 60px;
    padding:0 20px;
}



.home-label{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#9fb0c9;
    margin-bottom:10px;
}



.home-subtitle{
    color:#c0ccde;
    line-height:1.8;
    max-width:760px;
}

.home-hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:24px;
}

.home-hero-mini-info{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:18px;
    color:#dce7f7;
    font-size:14px;
}





.hero-visual-top{
    display:flex;
    gap:8px;
    margin-bottom:18px;
}

.hero-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,0.7);
}



.hero-visual-gradient{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top left, rgba(0,247,255,0.28), transparent 30%),
        radial-gradient(circle at bottom right, rgba(124,58,237,0.28), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}









.home-stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
    
}

.home-stat-card{
    padding:24px;
    border-radius:22px;
    text-align:center;
}

.home-stat-label{
    display:block;
    color:#b7c4d8;
    margin-bottom:12px;
    font-size:14px;
}

.home-stat-value{
    font-size:36px;
    font-weight:800;
    color:#fff;
}

.section-title-center{
    text-align:center;
    margin-bottom:20px;
}

.section-title-center h2{
    font-size:34px;
}

.home-features-section{
    margin-bottom:30px;
}

.home-features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.home-feature-card{
    padding:24px;
    border-radius:22px;
}

.home-feature-icon{
    font-size:34px;
    margin-bottom:14px;
}

.home-feature-card h3{
    margin-bottom:12px;
    font-size:22px;
}

.home-feature-card p{
    color:#d3dff0;
    line-height:1.75;
}

.home-highlight-section{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:24px;
    padding:28px;
    border-radius:26px;
    margin-bottom:30px;
}

.home-highlight-text h2{
    font-size:34px;
    margin-bottom:14px;
}

.home-highlight-text p{
    color:#d7e2f2;
    line-height:1.8;
}

.home-check-list{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:18px;
    color:#e8f0fb;
}

.home-highlight-side{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.home-side-box{
    padding:22px;
    border-radius:22px;
}

.home-side-box h3{
    margin-bottom:10px;
    font-size:22px;
}

.home-side-box p{
    color:#d4dfef;
    line-height:1.7;
    margin-bottom:14px;
}

.home-latest-section{
    margin-bottom:30px;
}

.home-latest-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top:20px;
}

.home-latest-card{
    overflow:hidden;
    border-radius:24px;
}

.home-latest-image{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:transform .35s ease;
}

.home-latest-image:hover{
    transform:scale(1.03);
}

.home-latest-body{
    padding:18px;
}

.home-latest-user{
    color:#fff;
    font-weight:700;
    margin-bottom:10px;
}

.home-latest-desc{
    color:#d9e4f3;
    line-height:1.7;
    min-height:52px;
    margin-bottom:14px;
}

.home-open-link{
    text-decoration:none;
    color:#00f7ff;
    font-weight:700;
}

.home-cta-section{
    padding:30px;
    border-radius:26px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}

.home-cta-section h2{
    font-size:34px;
    margin-bottom:12px;
}

.home-cta-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.home-empty-state{
    padding:36px 24px;
    border-radius:24px;
    text-align:center;
}

.home-empty-state h3{
    font-size:26px;
    margin-bottom:10px;
}

.home-empty-state p{
    color:#c8d4e7;
    line-height:1.7;
}

/* ============================= */
/* FEED */
/* ============================= */

.feed-page-wrap{
    max-width:1280px;
    margin:36px auto 60px;
    padding:0 20px;
}

.feed-page-header{
    padding:28px;
    border-radius:26px;
    margin-bottom:24px;
}

.feed-label{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#9fb0c9;
    margin-bottom:8px;
}

.feed-page-header h1{
    font-size:34px;
    margin-bottom:10px;
}

.feed-subtitle{
    color:#b8c6dc;
   max-width:760px;
    line-height:1.7;
}

.feed-subtitle2{
    color:#b8c6dc;
   /* max-width:760px; */
    line-height:1.7;
}

.feed-layout{
    display:grid;
    grid-template-columns:minmax(0,760px) 320px;
    gap:24px;
    align-items:start;
    justify-content:center;
}

.feed-main-column{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.feed-post-card{
    padding:20px;
    border-radius:24px;
}

.feed-post-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
}

.feed-post-user{
    display:flex;
    align-items:center;
    gap:14px;
}

.feed-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#00f7ff,#8b5cf6);
    color:#fff;
    font-size:20px;
    font-weight:800;
    box-shadow:0 0 20px rgba(0,247,255,0.15);
    flex-shrink:0;
}

.feed-username{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
}

.feed-username:hover{
    color:#00f7ff;
}

.feed-post-date{
    color:#afbdd2;
    font-size:13px;
    margin-top:4px;
}

.feed-open-post-btn{
    text-decoration:none;
    color:#fff;
    padding:10px 14px;
    border-radius:12px;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.10);
    font-weight:700;
}

.feed-post-image-wrap{
    overflow:hidden;
    border-radius:22px;
    margin-bottom:16px;
}

.feed-post-image{
    width:100%;
    object-fit:cover;
    max-height:760px;
    transition:transform .35s ease;
}

.feed-post-image:hover{
    transform:scale(1.02);
}

.feed-post-body{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.feed-post-actions-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.feed-actions-left{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.feed-action-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-decoration:none;
    padding:10px 14px;
    border-radius:12px;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.10);
    color:#fff;
    font-weight:700;
    cursor:pointer;
    transition:.25s ease;
}

.feed-action-btn:hover{
    transform:translateY(-2px);
    border-color:rgba(0,247,255,0.24);
}

.feed-action-btn.liked{
    color:#ffb3bc;
    background:rgba(255,75,92,0.12);
    border:1px solid rgba(255,75,92,0.28);
}

.feed-post-stats{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    color:#d9e2f0;
    font-size:15px;
}

.feed-description{
    color:#edf3ff;
    line-height:1.8;
    font-size:15px;
}

.feed-comments-preview{
    display:flex;
    flex-direction:column;
    gap:10px;
    padding-top:4px;
}

.feed-comment-preview-item{
    color:#d7e2f2;
    line-height:1.6;
    font-size:14px;
}

.feed-comment-preview-item strong{
    color:#fff;
    margin-right:8px;
}

.view-all-comments-link{
    text-decoration:none;
    color:#00f7ff;
    font-weight:700;
}

.no-comments-text{
    color:#aebccf;
}

.feed-sidebar{
    display:flex;
    flex-direction:column;
    gap:18px;
    position:sticky;
    top:110px;
}

.feed-side-card{
    padding:20px;
    border-radius:22px;
}

.feed-side-card h3{
    margin-bottom:10px;
    font-size:20px;
}

.feed-side-card p{
    color:#cfdaea;
    line-height:1.7;
}

.feed-side-actions{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:14px;
}

.feed-empty-state{
    padding:36px 24px;
    border-radius:24px;
    text-align:center;
}

/* ============================= */
/* GALLERY */
/* ============================= */

.gallery-page-wrap{
    max-width:1400px;
    margin:36px auto 60px;
    padding:0 20px;
}

.gallery-hero{
    padding:28px;
    border-radius:26px;
    margin-bottom:24px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:24px;
    flex-wrap:wrap;
}

.gallery-hero-content{
    max-width:760px;
}

.gallery-label{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#9fb0c9;
    margin-bottom:8px;
}

.gallery-hero h1{
    font-size:34px;
    margin-bottom:10px;
}

.gallery-subtitle{
    color:#b8c6dc;
    line-height:1.7;
}

.gallery-search-form{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
}

.gallery-search-form input{
    min-width:280px;
    padding:12px 14px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:#fff;
    outline:none;
}

.gallery-search-form input::placeholder{
    color:#aab7cb;
}

.gallery-search-form button{
    padding:12px 16px;
    border-radius:12px;
    border:none;
    cursor:pointer;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#00f7ff,#7c3aed);
}

.gallery-search-result-bar{
    padding:16px 20px;
    border-radius:18px;
    margin-bottom:20px;
    color:#d9e4f3;
}

.gallery-masonry{
    column-count:4;
    column-gap:22px;
}

.gallery-item{
    position:relative;
    display:inline-block;
    width:100%;
    margin:0 0 22px;
    border-radius:24px;
    overflow:hidden;
    break-inside:avoid;
    background:rgba(255,255,255,0.05);
}

.gallery-image{
    width:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.gallery-item:hover .gallery-image{
    transform:scale(1.04);
}

.gallery-overlay-top{
    position:absolute;
    top:14px;
    left:14px;
    right:14px;
    display:flex;
    justify-content:flex-start;
    pointer-events:none;
}

.gallery-user-chip{
    pointer-events:auto;
    text-decoration:none;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(7,13,24,0.55);
    border:1px solid rgba(255,255,255,0.18);
    color:#fff;
    font-size:13px;
    font-weight:700;
    backdrop-filter:blur(12px);
}

.gallery-user-chip:hover{
    color:#00f7ff;
}

.gallery-overlay-bottom{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:18px 16px 16px;
    background:linear-gradient(to top, rgba(5,10,18,0.92), rgba(5,10,18,0.10));
}

.gallery-stats{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    color:#fff;
    font-size:14px;
    margin-bottom:10px;
}

.gallery-desc{
    color:#d8e3f3;
    line-height:1.6;
    font-size:14px;
    margin-bottom:12px;
}

.gallery-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.gallery-card-btn{
    text-decoration:none;
    padding:10px 14px;
    border-radius:12px;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.16);
    color:#fff;
    font-weight:700;
}

.gallery-date{
    color:#b9c7db;
    font-size:13px;
}

.gallery-empty-state{
    padding:40px 24px;
    border-radius:24px;
    text-align:center;
}

/* ============================= */
/* PROFILE */
/* ============================= */

.profile-page-wrap{
    max-width:1280px;
    margin:36px auto 60px;
    padding:0 20px;
}

.profile-hero{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:24px;
    padding:28px;
    border-radius:26px;
    margin-bottom:24px;
}

.profile-hero-left{
    display:flex;
    gap:22px;
    align-items:flex-start;
}

.profile-avatar-xl{
    width:108px;
    height:108px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    font-weight:800;
    color:#fff;
    background:linear-gradient(135deg,#00f7ff,#8b5cf6);
    box-shadow:0 0 30px rgba(0,247,255,0.20);
    flex-shrink:0;
}

.profile-user-meta h1{
    font-size:34px;
    margin-bottom:8px;
}

.profile-label{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#9fb0c9;
    margin-bottom:6px;
}

.profile-email{
    color:#b8c6dc;
    margin-bottom:12px;
}

.profile-bio{
    color:#ecf3ff;
    line-height:1.8;
    max-width:760px;
    margin-bottom:12px;
}

.profile-member-since{
    color:#9fb0c9;
    font-size:14px;
}

.profile-hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.profile-stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:28px;
}

.profile-stat-card{
    padding:24px;
    border-radius:22px;
    text-align:center;
}

.profile-stat-label{
    display:block;
    color:#b7c4d8;
    margin-bottom:12px;
    font-size:14px;
}

.profile-stat-value{
    font-size:34px;
    font-weight:800;
    color:#fff;
}

.likes-text{
    color:#7fe7ff;
}

.comments-text{
    color:#d6b3ff;
}

.profile-posts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:20px;
}

.profile-post-card{
    overflow:hidden;
    border-radius:24px;
}

.profile-post-image{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:transform .35s ease;
}

.profile-post-image:hover{
    transform:scale(1.03);
}

.profile-post-body{
    padding:18px;
}

.profile-post-date{
    color:#aebcd0;
    font-size:13px;
    margin-bottom:12px;
}

.profile-post-desc{
    color:#edf3ff;
    line-height:1.7;
    min-height:72px;
    margin-bottom:16px;
}

.profile-post-stats{
    display:flex;
    justify-content:space-between;
    gap:14px;
    color:#d3def0;
    margin-bottom:16px;
    font-size:14px;
}

.profile-open-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:10px 14px;
    border-radius:12px;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.10);
    color:#fff;
    font-weight:700;
}

.profile-empty-state{
    padding:36px 24px;
    border-radius:24px;
    text-align:center;
    margin-top:20px;
}

/* ============================= */
/* DASHBOARD */
/* ============================= */

.dashboard-premium-page{
    max-width:1280px;
    margin:36px auto 60px;
    padding:0 20px;
}

.dashboard-hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    padding:28px;
    border-radius:26px;
    margin-bottom:26px;
}

.dashboard-user-box{
    display:flex;
    align-items:center;
    gap:20px;
}

.dashboard-avatar-lg{
    width:92px;
    height:92px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    font-weight:800;
    background:linear-gradient(135deg,#00f7ff,#8b5cf6);
    color:#fff;
    box-shadow:0 0 30px rgba(0,247,255,0.25);
    flex-shrink:0;
}

.dashboard-user-meta h1{
    font-size:15px;
    color:#9fb0c9;
    margin-bottom:6px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.dashboard-user-meta h2{
    font-size:30px;
    margin-bottom:8px;
}

.dashboard-email{
    color:#b8c6dc;
    margin-bottom:10px;
}

.dashboard-user-bio{
    color:#e7eefb;
    line-height:1.7;
    max-width:760px;
}

.dashboard-hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.dashboard-cards-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
    margin-bottom:26px;
}

.dashboard-info-card{
    padding:22px;
    border-radius:20px;
}

.metric-label{
    display:block;
    color:#b7c4d8;
    margin-bottom:12px;
    font-size:14px;
}

.metric-value{
    font-size:32px;
    font-weight:800;
    color:#fff;
}

.approved-text{
    color:#6bffb0;
}

.pending-text{
    color:#ffd166;
}

.dashboard-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:24px;
    border-radius:24px;
    margin-bottom:24px;
}

.toolbar-title h3{
    font-size:26px;
    margin-bottom:6px;
}

.toolbar-title p{
    color:#a8b5c8;
}

.dashboard-filters-form{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:center;
}

.dashboard-search-box input,
.dashboard-select-box select,
.dashboard-filters-form input,
.dashboard-filters-form select{
    padding:12px 14px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:#fff;
    min-width:220px;
    outline:none;
}

.dashboard-select-box select option,
.dashboard-filters-form select option{
    color:#000;
}

.filter-btn,
.reset-btn{
    padding:12px 16px;
    border-radius:12px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    font-weight:700;
    transition:.25s ease;
}

.filter-btn{
    background:linear-gradient(135deg,#00f7ff,#7c3aed);
    color:#fff;
}

.reset-btn{
    background:rgba(255,255,255,0.08);
    color:#fff;
    border:1px solid rgba(255,255,255,0.12);
}

.dashboard-posts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.dashboard-post-advanced{
    overflow:hidden;
    border-radius:24px;
}

.dashboard-post-thumb-wrap{
    position:relative;
}

.dashboard-post-thumb{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.post-status-chip,
.status-badge{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
}

.post-status-chip{
    position:absolute;
    top:14px;
    right:14px;
}

.post-status-chip.approved,
.status-badge.approved{
    background:rgba(0,255,156,0.18);
    color:#8fffd1;
    border:1px solid rgba(0,255,156,0.32);
}

.post-status-chip.pending,
.status-badge.pending{
    background:rgba(255,184,0,0.18);
    color:#ffd166;
    border:1px solid rgba(255,184,0,0.35);
}

.dashboard-post-body{
    padding:18px;
}

.dashboard-post-meta{
    display:flex;
    justify-content:space-between;
    gap:12px;
    color:#aab7cb;
    font-size:13px;
    margin-bottom:14px;
}

.dashboard-post-desc{
    color:#ecf3ff;
    line-height:1.7;
    min-height:96px;
    margin-bottom:16px;
}

.dashboard-post-stats{
    display:flex;
    justify-content:space-between;
    gap:14px;
    color:#c4d1e4;
    font-size:14px;
    margin-bottom:16px;
    flex-wrap:wrap;
}

.dashboard-post-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.dash-action{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 14px;
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.25s ease;
}

.view-action{
    color:#fff;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
}

.edit-action{
    color:#aefcff;
    background:rgba(0,247,255,0.10);
    border:1px solid rgba(0,247,255,0.30);
}

.delete-action{
    color:#ffb4bc;
    background:rgba(255,75,92,0.10);
    border:1px solid rgba(255,75,92,0.28);
}

.dashboard-pagination{
    margin-top:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.page-btn{
    text-decoration:none;
    color:#fff;
    padding:12px 16px;
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
}

.page-numbers{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.page-number{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.10);
}

.page-number.active{
    background:linear-gradient(135deg,#00f7ff,#7c3aed);
    border-color:transparent;
}

.dashboard-empty-state{
    padding:40px 24px;
    border-radius:24px;
    text-align:center;
}

.empty-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

/* ============================= */
/* UPLOAD */
/* ============================= */

.upload-page-wrap{
    max-width:1280px;
    margin:36px auto 60px;
    padding:0 20px;
}

.upload-card{
    padding:28px;
    border-radius:26px;
}

.upload-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:24px;
}

.upload-label{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#9fb0c9;
    margin-bottom:6px;
}

.upload-header h1{
    font-size:32px;
    margin-bottom:8px;
}

.upload-subtitle{
    color:#b9c7db;
    max-width:760px;
    line-height:1.7;
}

.upload-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:28px;
    align-items:start;
}

.upload-preview-box{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.upload-preview-inner{
    min-height:420px;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
}

.upload-preview-image{
    width:100%;
    height:100%;
    min-height:420px;
    object-fit:cover;
    display:none;
}

.upload-placeholder{
    min-height:420px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:14px;
    color:#b6c4d8;
    text-align:center;
    padding:20px;
}

.upload-placeholder span{
    font-size:48px;
}

.upload-rules{
    padding:20px;
    border-radius:20px;
}

.upload-rules h3{
    margin-bottom:12px;
}

.upload-rules ul{
    padding-left:18px;
    color:#d7e2f2;
    line-height:1.8;
}

.upload-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.upload-form label{
    color:#e3ecfb;
    font-weight:600;
}

.upload-form input[type="file"],
.upload-form textarea{
    width:100%;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:#fff;
    padding:14px;
    outline:none;
}

.upload-form textarea{
    min-height:220px;
}

.upload-form textarea::placeholder{
    color:#aab7cb;
}

.upload-meta-row{
    display:flex;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    color:#aab7cb;
    font-size:14px;
}

.upload-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:8px;
}

/* ============================= */
/* PHOTO / EDIT */
/* ============================= */

.photo-page-wrap,
.edit-page-wrap{
    max-width:1280px;
    margin:36px auto 60px;
    padding:0 20px;
}

.info-box{
    padding:24px;
    border-radius:20px;
    text-align:center;
}

.photo-view-card,
.photo-comments-section,
.edit-card{
    padding:26px;
    border-radius:26px;
    margin-bottom:24px;
}

.photo-view-grid,
.edit-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:28px;
    align-items:start;
}

.photo-main-image-box,
.edit-preview-box{
    position:relative;
}

.photo-main-image,
.edit-preview-image{
    width:100%;
    border-radius:22px;
    object-fit:cover;
    display:block;
    max-height:720px;
}

.photo-side-content{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.photo-meta-top,
.edit-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.photo-author-label,
.edit-label{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#9fb0c9;
    margin-bottom:6px;
}

.photo-author-name{
    font-size:30px;
}

.photo-status-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.photo-date{
    color:#b4c0d5;
    font-size:14px;
}

.photo-description-box h3,
.comments-header-row h2{
    margin-bottom:12px;
}

.photo-description-text{
    color:#eaf2ff;
    line-height:1.8;
    white-space:pre-wrap;
}

.photo-like-section{
    padding:18px;
    border-radius:20px;
}

.photo-like-top{
    margin-bottom:12px;
}

.likes-counter{
    color:#fff;
    font-weight:700;
}

.comments-header-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.comments-count{
    color:#b6c3d7;
}

.comment-form{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:24px;
}

.comment-form textarea,
.edit-form textarea,
.edit-form input[type="file"]{
    width:100%;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:#fff;
    padding:14px;
    outline:none;
}

.comment-form textarea::placeholder{
    color:#aab6ca;
}

.comments-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.comment-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    padding:16px;
}

.comment-top{
    display:flex;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:10px;
    color:#b9c7da;
    font-size:14px;
}

.comment-card p{
    color:#edf3ff;
    line-height:1.7;
}

.empty-comments{
    padding:18px;
    border-radius:16px;
    background:rgba(255,255,255,0.04);
    color:#b4bfd1;
}

.edit-card h1{
    font-size:30px;
}

.edit-form-box label{
    display:block;
    margin-bottom:8px;
    color:#dce8f8;
    font-weight:600;
}

.edit-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.field-hint{
    color:#9fb0c9;
    font-size:13px;
}

.edit-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:8px;
}

/* ============================= */
/* LEGAL / CONTACT */
/* ============================= */

.legal-page-wrap{
    max-width:1200px;
    margin:36px auto 60px;
    padding:0 20px;
}

.legal-hero{
    padding:28px;
    border-radius:26px;
    margin-bottom:24px;
}

.legal-label{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#9fb0c9;
    margin-bottom:8px;
}

.legal-hero h1{
    font-size:34px;
    margin-bottom:10px;
}

.legal-subtitle{
    color:#b8c6dc;
    line-height:1.7;
    max-width:860px;
}

.legal-content{
    padding:28px;
    border-radius:26px;
    line-height:1.85;
    color:#e8f0fb;
}

.legal-content h2{
    margin-bottom:12px;
    font-size:24px;
    color:#ffffff;
}

.legal-content h2:not(:first-child){
    margin-top:28px;
}

.legal-content p{
    color:#d8e3f3;
}

.legal-list{
    padding-left:22px;
    color:#d8e3f3;
    line-height:1.9;
}

.contact-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:24px;
}

.contact-info-card,
.contact-form-card{
    padding:26px;
    border-radius:24px;
}

.contact-info-card h2,
.contact-form-card h2{
    margin-bottom:14px;
    font-size:26px;
}

.contact-info-card p,
.contact-form-card p{
    color:#d8e3f3;
    line-height:1.7;
}

.contact-note{
    margin-top:18px;
    padding:16px;
    border-radius:16px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.10);
    color:#e9f2ff;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.contact-form label{
    color:#e3ecfb;
    font-weight:600;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:#fff;
    padding:14px;
    outline:none;
}

.contact-form textarea{
    min-height:180px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#aab7cb;
}

/* ============================= */
/* FOOTER */
/* ============================= */

.site-footer{
    margin-top:80px;
    background:#020617;
    padding-top:120px;
    position:relative;
}

.footer-wave{
    position:absolute;
    top:-80px;
    left:0;
    width:100%;
    height:120px;
    background:linear-gradient(90deg,#00f7ff,#7c3aed,#00f7ff);
    opacity:.25;
    clip-path:polygon(
        0 60%,
        10% 70%,
        20% 60%,
        30% 75%,
        40% 65%,
        50% 80%,
        60% 65%,
        70% 75%,
        80% 60%,
        90% 70%,
        100% 60%,
        100% 100%,
        0 100%
    );
    animation:waveMove 6s linear infinite;
}

@keyframes waveMove{
    0%{transform:translateX(0)}
    50%{transform:translateX(-30px)}
    100%{transform:translateX(0)}
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding:40px 20px;
}

.footer-col h4{
    margin-bottom:14px;
    color:#fff;
}

.footer-logo{
    color:#00f7ff;
    margin-bottom:14px;
}

.footer-desc{
    color:#cbd5e1;
    line-height:1.6;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:8px;
}

.footer-col ul li a{
    color:#cbd5e1;
    text-decoration:none;
    font-size:14px;
}

.footer-col ul li a:hover{
    color:#00f7ff;
}

.footer-social{
    display:flex;
    gap:14px;
    font-size:22px;
}

.footer-social a{
    color:white;
    transition:.2s;
}

.footer-social a:hover{
    color:#00f7ff;
    transform:scale(1.2);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    padding:20px;
    color:#94a3b8;
    margin-top:20px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:1200px){
    .gallery-masonry{column-count:3;}
    .dashboard-cards-grid{grid-template-columns:repeat(3,1fr);}
}

@media(max-width:1100px){
    .home-hero,
    .home-highlight-section{
        grid-template-columns:1fr;
    }

    .home-features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .home-latest-grid,
    .profile-posts-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .feed-layout{
        grid-template-columns:1fr;
    }

    .feed-sidebar{
        position:static;
    }
}

@media(max-width:980px){
    .main-nav-toggle{
        display:block;
    }

    .main-header-right{
        display:none;
        flex-direction:column;
        width:100%;
        margin-top:10px;
    }

    .main-header-right.main-mobile-open{
        display:flex;
    }

    .main-site-header-inner{
        flex-wrap:wrap;
    }

    .main-site-nav{
        flex-direction:column;
        align-items:flex-start;
    }

    .main-header-actions{
        flex-direction:column;
        width:100%;
    }

    .main-header-search{
        width:100%;
    }

    .main-header-search input{
        width:100%;
        min-width:0;
    }
}

@media(max-width:950px){
    .upload-grid,
    .photo-view-grid,
    .edit-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:900px){
    .gallery-masonry{column-count:2;}

    .profile-hero,
    .dashboard-hero,
    .dashboard-toolbar{
        flex-direction:column;
        align-items:flex-start;
    }

    .profile-stats-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .dashboard-cards-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .dashboard-user-box,
    .profile-hero-left{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .feed-page-header h1,
    .gallery-hero h1,
    .legal-hero h1,
    .home-hero h1,
    .home-highlight-text h2,
    .home-cta-section h2,
    .section-title-center h2,
    .profile-user-meta h1,
    .dashboard-user-meta h2,
    .upload-header h1,
    .photo-author-name,
    .edit-card h1{
        font-size:28px;
    }

    .feed-post-card{
        padding:16px;
    }

    .feed-post-header{
        align-items:flex-start;
        flex-direction:column;
    }

    .feed-avatar{
        width:46px;
        height:46px;
        font-size:18px;
    }

    .dashboard-posts-grid,
    .home-features-grid,
    .home-latest-grid,
    .profile-posts-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:640px){
    .main-site-header{
        padding:12px 12px 0;
    }

    .main-site-header-inner{
        padding:14px;
        border-radius:18px;
    }

    .main-brand-text{
        font-size:18px;
    }

    .main-brand-icon{
        width:40px;
        height:40px;
        font-size:18px;
    }

    .main-header-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .gallery-masonry{column-count:1;}

    .home-stats-grid,
    .dashboard-cards-grid{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }
}


.dashboard-bio-editor{
    padding:24px;
    border-radius:24px;
    margin-bottom:26px;
}

.dashboard-bio-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.dashboard-bio-form label{
    color:#e3ecfb;
    font-weight:600;
}

.dashboard-bio-form textarea{
    width:100%;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.12);
    background:rgba(255,255,255,0.06);
    color:#fff;
    padding:14px;
    outline:none;
    min-height:160px;
}

.dashboard-bio-form textarea::placeholder{
    color:#aab7cb;
}


.edit-profile-page-wrap{
    max-width: 1280px;
    margin: 36px auto 60px;
    padding: 0 20px;
}

.edit-profile-card{
    padding: 28px;
    border-radius: 26px;
}

.edit-profile-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.edit-profile-label{
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9fb0c9;
    margin-bottom: 6px;
}

.edit-profile-header h1{
    font-size: 32px;
    margin-bottom: 8px;
}

.edit-profile-subtitle{
    color: #b9c7db;
    line-height: 1.7;
    max-width: 760px;
}

.edit-profile-actions-top{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.edit-profile-grid{
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.edit-profile-preview,
.edit-profile-form-box{
    padding: 24px;
    border-radius: 24px;
}

.edit-profile-preview h3{
    margin-bottom: 18px;
}

.edit-profile-avatar-wrap{
    margin-bottom: 18px;
}

.edit-profile-avatar-image{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.12);
}

.edit-profile-avatar-fallback{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #00f7ff, #8b5cf6);
    box-shadow: 0 0 24px rgba(0,247,255,0.18);
}

.edit-profile-preview-meta h4{
    font-size: 24px;
    margin-bottom: 8px;
}

.edit-profile-preview-meta p{
    color: #b8c6dc;
    margin-bottom: 14px;
}

.edit-profile-preview-bio{
    color: #e7eefb;
    line-height: 1.8;
    white-space: pre-wrap;
}

.edit-profile-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.edit-profile-form label{
    color: #e3ecfb;
    font-weight: 600;
}

.edit-profile-form input,
.edit-profile-form textarea{
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    padding: 14px;
    outline: none;
}

.edit-profile-form textarea{
    min-height: 180px;
}

.edit-profile-form input::placeholder,
.edit-profile-form textarea::placeholder{
    color: #aab7cb;
}

.edit-profile-submit-row{
    margin-top: 8px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 920px){
    .edit-profile-grid{
        grid-template-columns: 1fr;
    }
}



.profile-avatar-xl-wrap{
    flex-shrink: 0;
}

.profile-avatar-xl-image{
    width: 108px;
    height: 108px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 24px rgba(0,247,255,0.12);
}


.header-user-box{

position:relative;

}

.header-avatar-link{

display:block;

}

.header-avatar-image{

width:42px;
height:42px;

border-radius:50%;

object-fit:cover;

border:2px solid rgba(255,255,255,0.2);

}

.header-avatar-fallback{

width:42px;
height:42px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-weight:700;

color:#fff;

background:linear-gradient(135deg,#00f7ff,#8b5cf6);

}

.header-user-dropdown{

position:absolute;

top:52px;
right:0;

background:rgba(20,25,40,0.95);

backdrop-filter:blur(14px);

border-radius:14px;

padding:10px 0;

min-width:170px;

display:none;

flex-direction:column;

box-shadow:0 10px 30px rgba(0,0,0,0.35);

}

.header-user-dropdown a{

padding:10px 16px;

color:#e5ecf8;

text-decoration:none;

display:block;

}

.header-user-dropdown a:hover{

background:rgba(255,255,255,0.08);

}

.header-user-box:hover .header-user-dropdown{

display:flex;

}


.header-user-mini{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    padding:8px 10px;
    border-radius:12px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.10);
    color:#fff;
    transition:.25s ease;
}

.header-user-mini:hover{
    border-color:rgba(0,247,255,0.24);
    transform:translateY(-1px);
}

.header-user-mini-image{
    width:34px;
    height:34px;
    border-radius:50%;
    object-fit:cover;
    border:1px solid rgba(255,255,255,0.12);
}

.header-user-mini-fallback{
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    color:#fff;
    background:linear-gradient(135deg,#00f7ff,#8b5cf6);
}

.header-user-mini-name{
    font-size:14px;
    font-weight:700;
    color:#eef4ff;
}


.site-footer{
    position: relative;
    margin-top: 90px;
    padding-top: 130px;
    background:
        radial-gradient(circle at top left, rgba(0,247,255,0.08), transparent 22%),
        radial-gradient(circle at top right, rgba(124,58,237,0.10), transparent 24%),
        linear-gradient(180deg, #030712 0%, #020617 100%);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-wave{
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.footer-wave-one{
    top: -70px;
    height: 120px;
    opacity: .22;
    background: linear-gradient(90deg, #00f7ff, #7c3aed, #00f7ff);
    clip-path: polygon(
        0 60%, 10% 70%, 20% 60%, 30% 75%, 40% 65%,
        50% 80%, 60% 65%, 70% 75%, 80% 60%, 90% 70%,
        100% 60%, 100% 100%, 0 100%
    );
    animation: footerWaveMove 7s linear infinite;
}

.footer-wave-two{
    top: -42px;
    height: 90px;
    opacity: .10;
    background: linear-gradient(90deg, #7c3aed, #00f7ff, #7c3aed);
    clip-path: polygon(
        0 65%, 10% 55%, 20% 70%, 30% 58%, 40% 72%,
        50% 60%, 60% 72%, 70% 58%, 80% 70%, 90% 55%,
        100% 65%, 100% 100%, 0 100%
    );
    animation: footerWaveMoveReverse 9s linear infinite;
}

@keyframes footerWaveMove{
    0%{transform: translateX(0);}
    50%{transform: translateX(-26px);}
    100%{transform: translateX(0);}
}

@keyframes footerWaveMoveReverse{
    0%{transform: translateX(0);}
    50%{transform: translateX(22px);}
    100%{transform: translateX(0);}
}

.footer-container{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr .9fr;
    gap: 34px;
}

.footer-col{
    padding: 18px 18px 10px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.footer-brand-col{
    background:
        radial-gradient(circle at top left, rgba(0,247,255,0.08), transparent 25%),
        rgba(255,255,255,0.05);
}

.footer-logo{
    color: #00f7ff;
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: .3px;
}

.footer-desc{
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 15px;
}

.footer-col h4{
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
}

.footer-col ul{
    list-style: none;
}

.footer-col ul li{
    margin-bottom: 10px;
}

.footer-col ul li a{
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: .22s ease;
}

.footer-col ul li a:hover{
    color: #00f7ff;
    text-shadow: 0 0 14px rgba(0,247,255,0.22);
}

.footer-social{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-social a{
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    transition: .25s ease;
}

.footer-social a:hover{
    color: #00f7ff;
    transform: translateY(-3px) scale(1.04);
    border-color: rgba(0,247,255,0.28);
    box-shadow: 0 0 18px rgba(0,247,255,0.14);
}

.footer-mini-text{
    color: #a9b8cc;
    line-height: 1.7;
    font-size: 14px;
}

.footer-badges{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.footer-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #eaf4ff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
}

.footer-bottom{
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 24px;
    padding: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 980px){
    .footer-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px){
    .site-footer{
        padding-top: 110px;
    }

    .footer-container{
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 26px 14px;
    }

    .footer-col{
        text-align: center;
    }

    .footer-social,
    .footer-badges{
        justify-content: center;
    }

    .footer-logo{
        font-size: 22px;
    }
}


.feed-avatar-image{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:0 0 18px rgba(0,247,255,0.08);
    flex-shrink:0;
}


/* =========================
   MOBILE HERO VISUAL FIX
=========================*/














