/* ==========================================
   WEBICA STUDIO
   Global Styles
========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS Variables
========================================== */

:root {

    /* Colors */
    --color-white: #FFFFFF;
    --color-black: #111111;
    --color-text: #111111;
    --color-text-light: #6B7280;
    --color-border: #E5E7EB;
    --color-section: #F8F9FA;

    /* Buttons */
    --color-button: #111111;
    --color-button-hover: #2B2B2B;
    --color-button-text: #FFFFFF;

    /* Success & Error */
    --color-success: #16A34A;
    --color-error: #DC2626;

    /* Layout */
    --container-width: 1200px;
    --section-padding: 120px;
    --border-radius: 16px;
    --transition: all .3s ease;

    /* Shadow */
    --shadow:
        0 8px 24px rgba(17, 17, 17, 0.06);
}

/* ==========================================
   Reset
========================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================
   Base
========================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Geist", sans-serif;
    background: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ==========================================
   Images
========================================== */

img {
    max-width: 100%;
    display: block;
}

/* ==========================================
   Links
========================================== */

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* ==========================================
   Lists
========================================== */

ul,
ol {
    list-style: none;
}

/* ==========================================
   Buttons
========================================== */

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    background: var(--color-button);
    color: var(--color-button-text);

    border-radius: 12px;

    font-weight: 600;

    transition: var(--transition);
}

.btn:hover {
    background: var(--color-button-hover);
}

.btn-outline {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    border: 1px solid var(--color-border);

    color: var(--color-text);

    border-radius: 12px;

    font-weight: 600;

    transition: var(--transition);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.btn-outline:hover {
    background: var(--color-section);
    transform: translateY(-3px);
}

/* ==========================================
   Container
========================================== */

.container {

    width: 100%;

    max-width: 1200px;

    margin: auto;

    padding-left: 20px;

    padding-right: 20px;

}

/* ==========================================
   Sections
========================================== */

section {
    padding: var(--section-padding) 0;
}

/* ==========================================
   Typography
========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text);
    line-height: 1.1;
    font-weight: 700;
}

h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

/* ==========================================
   Inputs
========================================== */

input,
textarea {
    width: 100%;
    padding: 14px 18px;

    border: 1px solid var(--color-border);
    border-radius: 12px;

    font: inherit;

    outline: none;

    transition: var(--transition);
}

input:focus,
textarea:focus {
    border-color: var(--color-black);
}

/* ==========================================
   Selection
========================================== */

::selection {
    background: var(--color-black);
    color: white;
}

/* ==========================================
   Scrollbar
========================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f4f4f4;
}

::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8b8b8;
}


/* ==========================================
   Mobile Button
========================================== */

.menu-toggle {

    display: none;
    cursor: pointer;
    background: none;
    border: none;

}

/* ==========================================
   Mobile Menu
========================================== */

.mobile-menu {

    position: fixed;

    inset: 0;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .35s ease;

    z-index: 2000;

}

.mobile-menu.active {

    opacity: 1;

    visibility: visible;

}

.mobile-menu nav {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 32px;

}

.mobile-menu nav a {

    font-size: 2rem;

    font-weight: 700;

    color: #111;

}

.close-menu {

    position: absolute;

    top: 30px;

    right: 30px;

    font-size: 3rem;

    cursor: pointer;

    background: none;

    border: none;

    color: #111;

}

/* ==========================================
   Responsive
========================================== */

@media(max-width:768px) {

    .nav-links,
    .nav-btn {

        display: none;

    }

    .menu-toggle {

        display: block;

    }

}



/* ==========================================
   Scroll Reveal
========================================== */

.reveal {

    opacity: 0;

    transform: translateY(40px);

    transition: opacity .7s ease, transform .7s ease;

}

.reveal.active {

    opacity: 1;

    transform: translateY(0);

}


/* ==========================================
   Hero Fade
========================================== */

body:not(.loaded) .hero {

    opacity: 0;

}

body.loaded .hero {

    opacity: 1;

    transition: opacity .8s ease;

}



/* ==========================================
   Technology Stack
========================================== */

.tech-stack {

    padding: 120px 0;

}


.tech-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}


.tech-card {

    padding: 36px;

    border: 1px solid var(--color-border);

    border-radius: 16px;

    background: #fff;

}


.tech-card h3 {

    margin-bottom: 25px;

}


.tech-list {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.tech-list span {

    padding: 8px 16px;

    border-radius: 999px;

    background: var(--color-section);

    border: 1px solid var(--color-border);

    font-size: .9rem;

    font-weight: 500;

}


@media(max-width:900px) {

    .tech-grid {

        grid-template-columns: 1fr;

    }

}

.logo img {

    height: 35px;

    width: auto;

    object-fit: contain;

}


* {

    box-sizing: border-box;

}


img {

    max-width: 100%;

    display: block;

}



/* ==========================================
   FilterTube Product Page
========================================== */


/* Product Hero */

.product-hero {

    padding: 120px 0;

}


.product-hero .container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

}



.product-content {

    max-width: 550px;

}



.product-logo {

    width: 80px;

    height: 80px;

    object-fit: contain;

    margin-bottom: 25px;

}



.product-content h1 {

    font-size: 4rem;

    line-height: 1.1;

    margin-bottom: 20px;

}



.product-content p {

    color: #6B7280;

    font-size: 1.15rem;

    line-height: 1.8;

    margin-bottom: 35px;

}



.product-image img {

    width: 100%;

    border-radius: 20px;

    border: 1px solid #E5E7EB;

}





/* ==========================================
   Product Sections
========================================== */


.about-product,
.features,
.how-it-works,
.product-info,
.purpose {

    padding: 100px 0;

}



.about-product h2,
.features h2,
.how-it-works h2,
.product-info h2,
.purpose h2 {

    font-size: 2.5rem;

    margin-bottom: 25px;

}



.about-product p,
.how-it-works p,
.purpose p {

    max-width: 750px;

    color: #6B7280;

    line-height: 1.8;

    font-size: 1.1rem;

}





/* ==========================================
   Features Grid
========================================== */


.feature-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}



.feature-card {

    padding: 35px;

    border: 1px solid #E5E7EB;

    border-radius: 16px;

    background: #FFFFFF;

}



.feature-card h3 {

    font-size: 1.25rem;

    margin-bottom: 15px;

}



.feature-card p {

    color: #6B7280;

    line-height: 1.7;

}





/* ==========================================
   Product Info
========================================== */


.product-info ul {

    list-style: none;

    padding: 0;

    max-width: 500px;

}



.product-info li {

    padding: 15px 0;

    border-bottom: 1px solid #E5E7EB;

    color: #6B7280;

}





/* ==========================================
   CTA
========================================== */


.cta {

    padding: 100px 0;

}



.cta .container {

    text-align: center;

}



.cta h2 {

    font-size: 2.5rem;

    margin-bottom: 30px;

}





/* ==========================================
   Mobile Responsive
========================================== */


@media(max-width:768px) {


    .product-hero {

        padding: 70px 0;

    }



    .product-hero .container {

        grid-template-columns: 1fr;

        gap: 40px;

    }



    .product-content h1 {

        font-size: 2.5rem;

    }



    .feature-grid {

        grid-template-columns: 1fr;

    }



    .about-product,
    .features,
    .how-it-works,
    .product-info,
    .purpose {

        padding: 70px 0;

    }



    .about-product h2,
    .features h2,
    .how-it-works h2,
    .product-info h2,
    .purpose h2 {

        font-size: 2rem;

    }


}



/* ==========================================
   Legal Pages (Privacy Policy / Terms)
========================================== */


.legal-page {

    padding: 120px 0;

}



.legal-page .container {

    max-width: 900px;

}



.legal-page h1 {

    font-size: 3.5rem;

    line-height: 1.2;

    margin-bottom: 20px;

}



.legal-page>.container>p:first-of-type {

    color: #6B7280;

    margin-bottom: 60px;

}



.legal-page h2 {

    font-size: 1.8rem;

    margin-top: 50px;

    margin-bottom: 20px;

}



.legal-page p {

    color: #6B7280;

    font-size: 1.05rem;

    line-height: 1.8;

    margin-bottom: 20px;

}



.legal-page ul {

    padding-left: 25px;

    margin-bottom: 30px;

}



.legal-page li {

    color: #6B7280;

    line-height: 1.8;

    margin-bottom: 10px;

}



/* Mobile */

@media(max-width:768px) {


    .legal-page {

        padding: 70px 0;

    }



    .legal-page h1 {

        font-size: 2.4rem;

    }



    .legal-page h2 {

        font-size: 1.5rem;

    }



    .legal-page p {

        font-size: 1rem;

    }


}



/* ==========================================
   TEAM VERIFICATION
========================================== */

/* =====================================
VERIFICATION PAGE
===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", sans-serif;
}


body {

    background: #f8fafc;
    color: #111827;

}




/* Main Page */

.verification-page {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 40px 20px;

}




.verification-container {

    width: 100%;

    max-width: 520px;

}




/* Card */


.verification-card {

    background: white;

    padding: 45px 35px;

    border-radius: 24px;

    text-align: center;

    border: 1px solid #e5e7eb;


    box-shadow:

        0 20px 50px rgba(0, 0, 0, .08);


    animation: fadeUp .5s ease;

}





/* Logo */


.verification-logo {

    width: 85px;

    height: 85px;

    object-fit: contain;

    margin-bottom: 20px;

}





/* Heading */


.verification-card h1 {

    font-size: 36px;

    font-weight: 800;

    color: #111827;

    margin-bottom: 12px;

}





.subtitle {

    color: #6b7280;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 30px;

}






/* Verification Input */


.verify-box {

    display: flex;

    gap: 12px;

}





.verify-box input {


    flex: 1;

    padding: 15px 18px;

    border-radius: 12px;

    border: 1px solid #d1d5db;

    font-size: 15px;

    outline: none;

    transition: .3s;


}



.verify-box input:focus {

    border-color: #111827;

    box-shadow:

        0 0 0 4px rgba(17, 24, 39, .08);

}





.verify-box button {


    padding: 15px 28px;

    border: none;

    border-radius: 12px;

    background: #111827;

    color: white;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}




.verify-box button:hover {

    background: #000;

    transform: translateY(-2px);

}








/* Result */


.verification-result {

    margin-top: 30px;

    text-align: left;

}




.result-card {


    background: #ffffff;

    padding: 25px;

    border-radius: 18px;

    border: 1px solid #e5e7eb;


}





.result-card h2 {

    font-size: 22px;

    margin-bottom: 20px;

}





.result-row {


    display: flex;

    justify-content: space-between;

    padding: 12px 0;

    border-bottom: 1px solid #f1f5f9;

    font-size: 15px;


}



.result-row:last-child {

    border-bottom: none;

}





.result-row strong {

    color: #4b5563;

}



.result-row span {

    font-weight: 600;

    color: #111827;

}







/* Success */


.verified {


    display: inline-block;

    background: #dcfce7;

    color: #15803d;

    padding: 6px 14px;

    border-radius: 50px;

    font-weight: 700;

}





/* Error */


.invalid {


    background: #fef2f2;

    border: 1px solid #fecaca;

    color: #dc2626;

    padding: 20px;

    border-radius: 15px;

}







/* Trust Box */


.trust-box {


    margin-top: 30px;

    padding: 18px;


    background: #f9fafb;

    border-radius: 15px;


    border: 1px solid #e5e7eb;


    color: #6b7280;

    font-size: 14px;


}





/* Animation */


@keyframes fadeUp {


    from {

        opacity: 0;

        transform: translateY(20px);

    }


    to {

        opacity: 1;

        transform: translateY(0);

    }


}







/* Mobile */


@media(max-width:600px) {


    .verification-card {

        padding: 35px 20px;

    }



    .verification-card h1 {

        font-size: 30px;

    }



    .verify-box {

        flex-direction: column;

    }



    .verify-box button {

        width: 100%;

    }



    .result-row {

        flex-direction: column;

        gap: 6px;

    }



}



/* ==========================================
   Webica Studio Admin Dashboard
   Professional Website Theme
========================================== */


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;

}



body {

    min-height: 100vh;

    background: #f8fafc;

    color: #111827;

    font-size: 14px;

}





/* ==========================================
   Main Layout
========================================== */


.main {
    width:min(1280px, calc(100% - 64px));
    margin:0 auto;
    padding:20px 0;
}





/* ==========================================
   Top Header
========================================== */


.topbar {


    background: #ffffff;


    border: 1px solid #e5e7eb;


    padding: 18px 22px;


    border-radius: 14px;


    display: flex;


    justify-content: space-between;


    align-items: center;


    margin-bottom: 18px;



    box-shadow:

        0 8px 25px rgba(0, 0, 0, .04);


}




.welcome h1 {


    font-size: 26px;
    line-height:1.2;
    font-weight: 750;
    color: #111827;


}



.welcome p {


    margin-top: 6px;


    color: #6b7280;


    font-size: 13px;


}







/* Profile */


.profile {


    display: flex;


    align-items: center;


    gap: 12px;


}



.avatar {


    width: 38px;


    height: 38px;


    border-radius: 50%;


    background: #111827;


    color: white;


    display: flex;


    align-items: center;


    justify-content: center;


    font-weight: 700;


    font-size: 15px;


}




.profile-info strong {


    display: block;


    font-size: 14px;


}



.profile-info small {


    color: #6b7280;


    font-size: 12px;


}







/* Logout */


#logoutBtn {


    margin-left: 15px;


    padding: 8px 16px;


    border: none;


    border-radius: 10px;


    background: #dc2626;


    color: white;


    font-size: 13px;


    font-weight: 600;


    cursor: pointer;


    transition: .3s;


}



#logoutBtn:hover {


    background: #b91c1c;


}









/* ==========================================
   Content Cards
========================================== */


.card {


    background: white;


    padding: 20px;


    border-radius: 14px;


    border: 1px solid #e5e7eb;


    margin-bottom: 18px;


    box-shadow:0 2px 10px rgba(15,23,42,.06);


}



.card-header h2,
.member-header h2 {


    font-size: 20px;


    font-weight: 700;


}



.card-header p,
.member-header p {


    margin-top: 5px;


    color: #6b7280;


    font-size: 13px;


}







/* ==========================================
   Form
========================================== */


.form-grid {


    display: grid;


    grid-template-columns: repeat(2, 1fr);


    gap:14px 18px;


}



.form-group {


    margin-top: 12px;


}



label {


    display: block;


    margin-bottom: 7px;


    font-size: 13px;


    font-weight: 600;


    color: #374151;


}





input,
select {


    width: 100%;


    height: 40px;


    padding: 0 12px;


    border-radius: 12px;


    border: 1px solid #d1d5db;


    background: white;


    font-size: 13px;


    outline: none;


    transition: .2s;


}




input::placeholder {


    color: #9ca3af;


    font-size: 13px;


}



input:focus,
select:focus {


    border-color: #2563eb;


    box-shadow:

        0 0 0 3px rgba(37, 99, 235, .1);


}






/* Verification ID */


.id-box {


    display: flex;


    gap: 10px;


    margin-top: 8px;


}




.id-box button {


    height: 40px;


    padding: 0 18px;


    border: none;


    border-radius: 12px;


    background: #2563eb;


    color: white;


    font-size: 13px;


    font-weight: 600;


    cursor: pointer;


}





/* Save Button */


.save-btn {


    margin-top: 20px;


    height: 40px;


    padding: 0 24px;


    border: none;


    border-radius: 12px;


    background: #111827;


    color: white;


    font-size: 13px;


    font-weight: 600;


    cursor: pointer;


}



.save-btn:hover {


    background: #000;


}







/* ==========================================
   Members Table
========================================== */


.member-header {


    display: flex;


    justify-content: space-between;


    align-items: center;


    margin-bottom: 20px;


}




.search-box input{

    width:220px;
    height:38px;

}





.table-container {


    overflow-x: auto;


}



table {


    width: 100%;


    border-collapse: collapse;


}



thead {


    background: #f9fafb;


}



th {


    padding:11px 14px;


    text-align: left;


    font-size: 12px;


    color: #6b7280;


}



td {


    padding:11px 14px;


    border-bottom: 1px solid #f1f5f9;


    font-size: 13px;


}




tbody tr:hover {


    background: #f9fafb;


}




td button {


    padding: 7px 12px;


    border: none;


    border-radius: 12px;


    background: #2563eb;


    color: white;


    font-size: 12px;


    cursor: pointer;


}







/* ==========================================
   Toast
========================================== */


#toast {


    position: fixed;


    right: 25px;


    bottom: 25px;


    background: #111827;


    color: white;


    padding: 14px 22px;


    border-radius: 12px;


    font-size: 14px;


}







/* ==========================================
   Responsive
========================================== */


@media(max-width:900px) {


    .main {

    width:min(1280px, calc(100% - 64px));
    margin:0 auto;
    padding:20px 0;

    }



    .topbar {


        flex-direction: column;


        align-items: flex-start;


        gap: 15px;


    }



    .stats {


        grid-template-columns: 1fr;


    }



    .form-grid {


        grid-template-columns: 1fr;


    }



    .member-header {


        flex-direction: column;


        gap: 15px;


        align-items: stretch;


    }



    .search-box input {


        width: 100%;


    }


}





@media(max-width:500px) {


    .welcome h1 {


        font-size: 24px;


    }



    .card {


        padding: 20px;


    }



    .id-box {


        flex-direction: column;


    }



    .id-box button {


        width: 100%;


    }


}









/* ==========================================
   Webica Studio Admin Login
========================================== */


.login-page {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px 20px;

    background:

        linear-gradient(135deg,
            #f8fafc,
            #eef2ff);

}



.login-card {


    width: 100%;

    max-width: 430px;

    background: white;

    padding: 45px 35px;

    border-radius: 28px;

    text-align: center;


    box-shadow:

        0 25px 80px rgba(0, 0, 0, 0.10);


    animation: loginFade .6s ease;


}




.login-card img {


    width: 85px;

    height: 85px;

    object-fit: contain;

    margin-bottom: 20px;


}



.login-card h1 {


    font-size: 32px;

    color: #111827;

    margin-bottom: 10px;


}



.login-card p {


    color: #6b7280;

    margin-bottom: 30px;

    line-height: 1.6;


}





#loginForm {


    display: flex;

    flex-direction: column;

    gap: 18px;


}




#loginForm input {


    width: 100%;

    padding: 16px 18px;

    border-radius: 14px;

    border: 1px solid #d1d5db;

    font-size: 16px;

    outline: none;

    transition: .3s;


}



#loginForm input:focus {


    border-color: #111827;

    box-shadow:

        0 0 0 3px rgba(17, 24, 39, .08);


}




#loginForm button {


    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 14px;

    background: #111827;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;


}



#loginForm button:hover {


    background: #000;

    transform: translateY(-2px);


}





#message {


    margin-top: 20px;

    font-size: 14px;

    color: #dc2626;

    font-weight: 600;


}




/* Loading effect */

#loginForm button:active {


    transform: scale(.98);


}




@keyframes loginFade {


    from {


        opacity: 0;

        transform: translateY(30px);


    }


    to {


        opacity: 1;

        transform: translateY(0);


    }


}





@media(max-width:500px) {


    .login-card {


        padding: 35px 22px;


    }



    .login-card h1 {


        font-size: 26px;


    }


}

.password-box {

    position: relative;

    width: 100%;

}


.password-box input {

    width: 100%;

    padding-right: 45px !important;

}



.password-eye {

    position: absolute;

    right: 16px;

    top: 50%;

    transform: translateY(-50%);


    font-size: 18px;

    cursor: pointer;

    color: #6b7280;

    user-select: none;


}


.password-eye:hover {

    color: #111827;

}