/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[3]!./app/styles/App.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************/
/* Color Palette & Variables */
:root {
    --black: #2B2B2B;
    --white: #FFFFFF;
    --shadow-light: 0 4px 15px rgba(43, 43, 43, 0.08);
    --shadow-medium: 0 8px 30px rgba(43, 43, 43, 0.12);
}

* {
    font-family: 'Poppins', sans-serif;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(43, 43, 43, 0.1);
    transition: all 0.4s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--black);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--black);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: var(--black);
}

.nav-link.active::before {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    background: var(--white);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(43, 43, 43, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--black);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin: 4px 8px;
}

.dropdown-item:hover {
    background: rgba(43, 43, 43, 0.05);
    color: var(--black);
}

.dropdown-item:first-child {
    margin-top: 8px;
}

.dropdown-item:last-child {
    margin-bottom: 8px;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login,
.btn-signup {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.btn-login {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-login:hover {
    background: var(--black);
    color: var(--white);
}

.btn-signup {
    background: var(--black);
    color: var(--white);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Face Effects Page Styles */
.face-effects-page {
    padding: 120px 40px 60px;
    min-height: 100vh;
}

.face-effects-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.face-effects-header {
    text-align: center;
    margin-bottom: 60px;
}

.face-effects-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.face-effects-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--black);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.face-effects-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.face-btn {
    font-family: 'Poppins', sans-serif;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.5px;
}

.sign-up-btn {
    background: var(--black);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.sign-up-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: #000;
}

.know-more-btn {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}

.know-more-btn:hover {
    background: var(--black);
    color: var(--white);
}

/* Interactive Section */
.face-effects-interactive {
    margin-bottom: 80px;
}

.try-yourself-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.try-yourself-subtitle {
    font-size: 16px;
    color: var(--black);
    opacity: 0.6;
    text-align: center;
    margin-bottom: 40px;
}

.face-image-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 40px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: visible;
}

/* Full-bleed mode (no padding for single image) */
.face-image-container.full-bleed {
    padding: 0;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Initial State: Single Full-Bleed Image */
.image-wrapper.single-full {
    display: block;
}

.image-wrapper.single-full .image-slot {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.image-wrapper.single-full .face-demo-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
}

.image-wrapper.single-full .image-label {
    display: none;
}

/* Effect Main State: Effect full-size, Original as thumbnail overlay */
.image-wrapper.effect-main #effectImageSlot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.image-wrapper.effect-main #effectImageSlot .face-demo-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
}

.image-wrapper.effect-main #effectImageSlot .image-label {
    display: none;
}

.image-wrapper.effect-main #originalImageSlot {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
    height: auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.image-wrapper.effect-main #originalImageSlot:hover {
    transform: scale(1.05);
}

.image-wrapper.effect-main #originalImageSlot .face-demo-image {
    width: 120px;
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
    border: 3px solid white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.image-wrapper.effect-main #originalImageSlot .image-label {
    position: relative;
    background: rgba(43, 43, 43, 0.9);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 0;
}

/* Original Main State: Original full-size, Effect as thumbnail overlay */
.image-wrapper.original-main #originalImageSlot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.image-wrapper.original-main #originalImageSlot .face-demo-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
}

.image-wrapper.original-main #originalImageSlot .image-label {
    display: none;
}

.image-wrapper.original-main #effectImageSlot {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
    height: auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.image-wrapper.original-main #effectImageSlot:hover {
    transform: scale(1.05);
}

.image-wrapper.original-main #effectImageSlot .face-demo-image {
    width: 120px;
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
    border: 3px solid white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.image-wrapper.original-main #effectImageSlot .image-label {
    position: relative;
    background: rgba(43, 43, 43, 0.9);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 0;
}

/* General Image Slot Styles */
.image-slot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.face-demo-image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.3s ease;
}

.image-label {
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    padding: 0;
    background: transparent;
    position: relative;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(43, 43, 43, 0.2);
    border-top: 4px solid var(--black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-family: 'Poppins', sans-serif;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.interaction-hint {
    text-align: center;
    color: var(--black);
    opacity: 0.6;
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
}

/* Control Buttons */
.face-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.control-btn {
    font-family: 'Poppins', sans-serif;
    padding: 14px 32px;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 50px;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.control-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.control-btn.active {
    background: var(--black);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-icon {
    font-size: 24px;
}

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

.reset-btn {
    display: block;
    margin: 0 auto;
    padding: 12px 32px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 50px;
    color: var(--black);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.reset-btn:hover {
    background: var(--black);
    color: var(--white);
}

/* Popular Effects Section */
.popular-effects-section {
    margin-top: 80px;
}

.popular-effects-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.effect-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.effect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.effect-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    border-radius: 20px;
}

.effect-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.effect-label {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

.face-effects-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    border: 1px solid rgba(43, 43, 43, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.feature-description {
    color: var(--black);
    opacity: 0.7;
    line-height: 1.6;
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid rgba(43, 43, 43, 0.1);
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 5px;
}

.footer-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--black);
    opacity: 0.6;
    line-height: 1.6;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    display: block;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(43, 43, 43, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--black);
    opacity: 0.6;
}

/* Auth Modal Styles */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.auth-modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 1;
}

.auth-modal-close:hover {
    background: #f5f5f5;
    color: #2B2B2B;
}

.auth-modal-close svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design for Face Effects Page */
@media (max-width: 768px) {
    .face-effects-page {
        padding: 100px 20px 40px;
    }

    .face-effects-title {
        font-size: 32px;
    }

    .face-effects-subtitle {
        font-size: 16px;
    }

    .face-effects-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .face-btn {
        width: 100%;
    }

    .try-yourself-title {
        font-size: 24px;
    }

    .face-image-container {
        min-height: 400px;
    }

    .image-wrapper {
        min-height: 400px;
    }

    .face-controls {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .control-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .popular-effects-title {
        font-size: 28px;
    }

    .category-title {
        font-size: 20px;
    }

    .effect-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header-container {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .logo-section {
        gap: 8px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo-section {
        gap: 6px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .nav-menu {
        gap: 10px;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

    .nav-link {
        font-size: 9px;
        letter-spacing: 0.3px;
        padding: 4px 8px;
    }

    .nav-dropdown .dropdown-arrow {
        width: 8px;
        height: 8px;
        margin-left: 2px;
    }
}
/*!******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[3]!./app/styles/Index.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #FFFFFF;
  color: #2B2B2B;
  line-height: 1.6;
  overflow-x: hidden;
}

#root {
  position: relative;
  min-height: 100vh;
}

