@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --Poppins-family: "Poppins", sans-serif;
    --Google-family: "Google Sans Flex", "Google Sans", "Helvetica Neue", sans-serif;
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --purple: #8b5cf6;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--Google-family);
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

ul,
ol {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    background: var(--gray-900);
    transition: all var(--transition-base);
    color: var(--gray-100);
    overflow-x: hidden;
}

main {
    width: 100%;
    height: 100%;
}

.hidden {
    display: none !important;
}

::-webkit-scrollbar {
    display: none;
}

.Landingpage {
    width: 100%;
    height: 100vh;
    position: relative;
}

.floating-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.circle,
.square {
    position: absolute;
    opacity: 0.05;
    animation: float 20s infinite linear;
}

.circle {
    border-radius: 50%;
    background: var(--primary);
}

.square {
    background: var(--secondary);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
    background: var(--purple);
}

.circle-3 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 15%;
    animation-delay: 10s;
    background: var(--info);
}

.circle-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 20%;
    animation-delay: 15s;
    background: var(--warning);
}

.square-1 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 5%;
    animation-delay: 2s;
    transform: rotate(45deg);
}

.square-2 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 15%;
    animation-delay: 12s;
    transform: rotate(30deg);
    background: var(--danger);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

    50% {
        transform: translateY(0) rotate(180deg);
    }

    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

/*! Toaster */
.Toaster {
    position: fixed;
    bottom: 10px;
    opacity: 0;
    right: 10px;
    display: none;
    width: fit-content;
    height: fit-content;
}

.toast {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    height: 100%;
    padding: 10px 30px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    transform: translateX(400px);
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.Toaster.show {
    transform: translateX(0);
    opacity: 1;
    right: 10px;
}

.toast-icon,
.toast-text {
    width: 100%;
    height: 100%;
    padding: 5px 8px;
}

.toast-icon i {
    font-size: 1.2rem;
}

.toast-success {
    background: rgba(16, 185, 129, 0.1);
    ;
    color: white;
    border-color: rgba(16, 185, 129, 0.3);
}

.toast-error {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border-color: rgba(239, 68, 68, 0.3);
}

.toast-info {
    background: rgba(59, 130, 246, 0.9);
    color: white;
    border-color: rgba(59, 130, 246, 0.3);
}

.toast-warning {
    background: rgba(245, 158, 11, 0.9);
    color: white;
    border-color: rgba(245, 158, 11, 0.3);
}

/* ===== Toaster End ===== */

/*! Landing Page Container */
#home-header {
    width: 100%;
    height: 10vh;
    padding: 10px 40px;
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.home-header-navbar {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.home-header-logo {
    font-size: 25px;
    transition: var(--transition-base);
}


.home-header-logo .header-logo {
    font-size: 1.2rem;
    color: var(--gray-50);
}

.home-header-logo p {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.home-header-nav-menu {
    display: flex;
    padding: 5px;
    text-align: center;
    gap: 1rem;
}

.home-header-nav-menu .home-header-nav-list a {
    padding: 9px 15px;
    font-size: 1rem;
    color: var(--gray-300);
    transition: var(--transition-base);
    position: relative;
}

.home-header-nav-menu .home-header-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gray-400);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.home-header-nav-menu .home-header-nav-list a:hover {
    color: var(--gray-50);
}

.home-header-nav-menu .home-header-nav-list a:hover::after {
    width: 70%;
}

.home-header-btn {
    display: inline-flex;
    gap: 0.9rem;
    align-items: center;
}

.home-header-btn .header-btn {
    padding: 9px 25px;
    border: none;
    background: var(--gray-300);
    color: var(--gray-900);
    font-weight: 550;
    transition: var(--transition-base);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.9rem;
}

.home-header-btn .header-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.home-header-btn .header-btn:nth-child(2) {
    background: transparent;
    color: var(--gray-50);
    border: 2px solid var(--gray-700);
}

.home-header-btn .header-btn:nth-child(2):hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--gray-300);
    transition: var(--transition-base);
}

.mobile-menu-toggle:hover {
    color: var(--gray-50);
}

.home {
    width: 100%;
    height: 100vh;
    background: linear-gradient(145deg, var(--gray-900) 0%, black 50%, var(--gray-900) 100%);
    position: relative;
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.home-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.home-title {
    font-size: 25px;
    text-align: center;
    width: min(890px, 90%);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home h1 {
    font-size: 4.9rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--Google-family);
}

.home h1 span {
    font-size: 4.5rem;
    display: block;
    margin-top: 0.5rem;

    background: linear-gradient(326deg, #452eff6e, #4ed6ffe9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home p {
    margin: 0 auto;
    max-width: 650px;
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.home-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.home-links .btn-primary,
.home-links .btn-secondary {
    width: auto;
    min-width: 160px;
    padding: 14px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-base);
    font-size: 1rem;
    border-radius: var(--radius-full);
}

.home-links .btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    border: 1px solid transparent;
}

.home-links .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
}

.home-links .btn-secondary {
    background: transparent;
    border: 1px solid var(--gray-600);
    color: var(--gray-300);
}

.home-links .btn-secondary:hover {
    border-color: var(--gray-100);
    color: var(--gray-50);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.section {
    padding: 100px 20px;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--gray-100), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.about-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    position: relative;
    height: 400px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    transition: var(--transition-base);
    animation: floatCard 6s infinite ease-in-out;
}

.floating-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.card-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.card-4 {
    bottom: 30%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gray-100);
}

.about-text p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.about-list li i {
    color: var(--secondary);
}

.features {
    background: linear-gradient(to bottom, var(--gray-900) 0%, rgba(17, 24, 39, 0.8) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-100);
}

.feature-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.testimonial-content {
    color: var(--gray-300);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--gray-100);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition-base);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--gray-100);
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-100);
}

.price span {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 400;
}

.pricing-features ul {
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.pricing-features li i {
    color: var(--secondary);
}

.pricing-features li i.fa-times {
    color: var(--gray-600);
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.cta {
    background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-100);
}

.cta-content .cta-notes {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.cta-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--glass-border);
    background: var(--gray-800);
    color: var(--gray-100);
    font-size: 1rem;
    transition: var(--transition-base);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.cta-form .btn-primary {
    padding: 1rem 2rem;
    white-space: nowrap;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: var(--gray-300);
    color: var(--gray-900);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
    background-color: var(--gray-50);
    transform: translateY(-1px);
}

.btn-primary:disabled {
    background-color: var(--gray-600);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    color: var(--gray-400);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer {
    background: var(--gray-900);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 20px 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    line-height: 1;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-about .desc {
    color: var(--gray-400);
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 0.8rem;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    color: var(--gray-400);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: var(--gray-100);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul li a {
    color: var(--gray-400);
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-500);
    transition: var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 0.2;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    opacity: 0.5;
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.feature-card[data-delay="0"] {
    animation-delay: 0.1s;
}

.feature-card[data-delay="100"] {
    animation-delay: 0.2s;
}

.feature-card[data-delay="200"] {
    animation-delay: 0.3s;
}

.feature-card[data-delay="300"] {
    animation-delay: 0.4s;
}

.feature-card[data-delay="400"] {
    animation-delay: 0.5s;
}

.feature-card[data-delay="500"] {
    animation-delay: 0.6s;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ====== Landing Page Container END ====== */

/*! ===== Authentication Container ===== */
.Authentication-container {
    width: 100%;
    height: 100vh;
}

.auth-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.container {
    width: min(500px, 95%);
    height: auto;
    max-height: 90vh;
    background: #000814;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 8px 20px;
    transition: var(--transition-fast);
    overflow-y: auto;
}

.login-logo {
    padding: 30px;
    font-size: 20px;
    line-height: 0.5;
    font-family: var(--Poppins-family);
}

.login-logo h1 {
    font-size: 1rem;
    color: var(--gray-300);
}

.login-logo span {
    font-size: 0.4rem;
    color: var(--gray-500);
}

.login-header {
    padding: 10px;
    width: 100%;
    margin-top: 0.2rem;
}

.login-heading {
    text-align: center;
    width: 100%;
    font-size: 24px;
    line-height: 1.3;
}

.login-heading h1 {
    font-size: 2.3rem;
    font-weight: 400;
    color: var(--gray-50);
}

.login-heading p {
    font-size: 0.8rem;
    font-weight: 200;
    color: var(--gray-100);
}

.login-form {
    width: 100%;
    padding: 0px 40px;
    margin-top: 1.5rem;
}

.input-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 6px;
}

.input-group input {
    width: 100%;
    padding: 10px 19px;
    border: 1px solid var(--gray-900);
    border-radius: var(--radius-sm);
    font-size: 0.80rem;
    color: var(--gray-100);
    background-color: var(--gray-900);
    transition: var(--transition-fast);
    outline: none;
}

.input-group input:focus {
    border-color: var(--gray-600);
    background-color: var(--gray-800);
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: var(--gray-300);
    color: var(--gray-900);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover {
    background-color: var(--gray-50);
    transform: translateY(-1px);
}

.btn-primary:disabled {
    background-color: var(--gray-600);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    color: var(--gray-400);
}

.btn-secondary {
    width: 100%;
    padding: 14px;
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background-color: rgba(99, 102, 241, 0.1);
}

.btn-danger {
    width: 100%;
    padding: 14px;
    background-color: var(--danger);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    background-color: #dc2626;
    transform: translateY(-1px);
}

.error-message {
    color: var(--danger);
    font-size: 0.8rem;
    margin: 8px 0;
    padding: 8px 12px;
    background-color: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-sm);
    display: none;
}

.error-message.show {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.password-requirements {
    margin-top: 4px;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.social-section {
    padding: 24px 10px 10px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--gray-600);
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--gray-700);
}

.divider span {
    padding: 0 12px;
    font-weight: 500;
    color: var(--gray-100);
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background-color: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.btn-social:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-900);
}

.btn-social i {
    font-size: 1.1rem;
}

.signup-toggle {
    text-align: center;
    padding: 20px 0 10px;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.signup-toggle a {
    color: var(--gray-50);
    font-weight: 700;
    margin-left: 4px;
}

.signup-toggle a:hover {
    text-decoration: underline;
}

.form-step {
    display: none;
}

.form-step.active-step {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.username-feedback {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    padding: 5px;
}

.final-confirmation {
    text-align: center;
    padding: 30px;
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-back {
    flex: 1;
    padding: 14px;
    background-color: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-back:hover {
    background-color: var(--gray-50);
    border-color: var(--gray-400);
}

.button-group .btn-primary {
    flex: 2;
}

.logout-modal-overlay,
.username-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.logout-modal,
.username-modal {
    background: var(--gray-800);
    padding: 2rem;
    border-radius: var(--radius-md);
    width: min(90%, 400px);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-700);
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-50);
}

.modal-header p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 20px;
}

/* ===== Authentication Container END ===== */

/*! ===== Dashboard Container ===== */
/* Header */
#header {
    width: 100%;
    height: 10vh;
    padding: 10px 40px;
    z-index: 1000;
    position: relative;
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo h1 {
    font-size: 1.2rem;
    color: var(--gray-50);
}

.logo span {
    font-size: 0.7rem;
    color: var(--gray-400);
    display: block;
}

.menu-toggle {
    display: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray-500);
    background: transparent;
    border: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-container {
    position: relative;
    width: 300px;
    height: 40px;
}

.search-container input {
    width: 100%;
    height: 100%;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-md);
    padding: 0 40px 0 15px;
    color: white;
    outline: none;
    transition: var(--transition-base);
}

.search-container input:focus {
    border-color: var(--primary);
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
}

.right-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.notification-btn {
    position: relative;
    background: transparent;
    border: none;
    color: var(--gray-300);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.notification-btn:hover {
    color: var(--gray-50);
}

.notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    padding: 3px 7px;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: bounceIn 0.3s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.notification-count.hidden {
    display: none;
}

.notification-dropdown {
    position: absolute;
    top: 4.5rem;
    right: 11rem;
    padding: 20px;
    width: min(350px, 90vw);
    max-height: 400px;
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.875);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    display: none;
    overflow: hidden;
    z-index: 9999;
    animation: slideDown 0.2s ease-out;
}

.notification-dropdown.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-header {
    display: flex;
    width: 100%;
    padding: 5px;
    align-items: center;
    justify-content: space-between;
}

.notification-header h3 {
    font-size: 1rem;
    color: var(--gray-100);
    font-weight: 600;
    margin: 0;
}

.mark-all-read {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.mark-all-read:hover {
    color: var(--gray-400);
    background: rgba(99, 102, 241, 0.1);
}

.mark-all-read:active {
    transform: scale(0.98);
}

.empty-notifications {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.empty-notifications i {
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0.3;
    display: block;
}

.empty-notifications p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--gray-500);
}

.empty-notifications p.subtext {
    font-size: 0.85rem;
    margin-top: 8px;
    color: var(--gray-600);
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.notif-item {
    display: flex;
    align-items: center;
    /* border: 1px solid; */
    padding: 10px 20px;
    border-bottom: 1px solid var(--gray-800);
    transition: all var(--transition-fast);
    position: relative;
}

.notif-icon {
    width: 35px;
    height: 35px;
    display: flex;
    border-radius: var(--radius-full);
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
}

.notif-message {
    line-height: 0.9;
    padding: 0px 10px;
}

.notif-message p {
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--gray-300);
}

.notif-message p strong {
    color: var(--gray-50);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.user-profile:hover {
    background: var(--gray-800);
}

.user-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name h3 {
    font-size: 0.9rem;
    font-weight: 700;
}

.user-name span {
    font-size: 0.7rem;
    color: var(--gray-400);
}

/* Sections */
.containers {
    width: 100%;
    display: flex;
    height: calc(100vh - 70px);
    overflow: visible !important;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.sidebar {
    flex: 0 0 280px;
    background: rgba(15, 23, 42, 0.475);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    height: calc(100vh - 5.5rem);
    position: sticky;
    top: 6rem;
    overflow-y: auto;
}

.nav-section {
    margin-bottom: 2rem;
}

.nav-section h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    color: var(--gray-300);
    text-decoration: none;
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: var(--glass-border);
    color: var(--gray-100);
    transform: translateX(5px);
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(16, 185, 129, 0.1));
    color: var(--primary-light);
    border-left: 3px solid var(--primary);
}

.nav-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.nav-label {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
}

.content-area {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    position: relative;
    z-index: 1;
}

/* !Deafult in sections  */
.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.page-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.page-section.active {
    display: block;
}

.page-header {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.page-header p {
    color: var(--gray-400);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 15px;
}

.stat-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-base);
    cursor: pointer;
}

.state-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 360px;
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-info p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

#dashboard .state-card {
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

#dashboard .state-card:first-child {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(79, 70, 229, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
}

#dashboard .state-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
}

#dashboard .state-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
}

#dashboard .state-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.state,
.activity-list {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 3rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition-base);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.activity-details {
    font-size: 20px;
    color: var(--gray-200);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    max-width: 230px;
}

.activity-details h4 {
    color: var(--gray-200);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    font-size: 1rem;
    min-width: 0;
}

.activity-details p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Upload Section */
.upload-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 4rem;
}

.drop-zone {
    width: min(650px, 95%);
    height: 400px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 16px;
    text-align: center;
    border: 2px dashed var(--gray-600);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.drop-zone:hover,
.drop-zone.drag-over {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.file-input-hidden {
    display: none;
}

.file-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.file-card-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    user-select: none;
}

.file-card-select:hover {
    background: rgba(255, 255, 255, 0.1);
}

.file-card-select.selected {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.15);
}

.recent-files {
    padding: 24px;
    height: 400px;
    width: min(364px, 90%);
    overflow-x: hidden;
    border-radius: var(--radius-lg);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Shared Files and Received Files */
.share-recent-files,
.received-recent-files {
    padding: 24px;
    border-radius: var(--radius-lg);
}
.file-table {
    width: 100%;
    border-collapse: collapse;
}

.file-table th,
.file-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-800);
}

.file-table th {
    color: var(--gray-400);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Networks section */
.network-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-700);
    padding-bottom: 10px;
}

.net-tab {
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    position: relative;
}

.net-tab:hover,
.net-tab.active {
    color: var(--gray-50);
    background: var(--gray-800);
}

.net-tab.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

.net-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.net-content.active {
    display: block;
}

.friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    height: 350px;
    overflow-x: hidden;
}

.friend-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray-700);
    padding: 10px;
    height: 250px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.friend-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.friend-card h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.friend-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 15px;
}

.btn-xs {
    padding: 6px 10px;
    font-size: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-chat {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
}

.btn-chat:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-remove {
    background: rgba(107, 114, 128, 0.2);
    color: var(--gray-400);
}

.btn-remove:hover {
    background: var(--gray-600);
    color: white;
    transform: translateY(-2px);
}
.recipient-chip {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 20px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    transition: all 0.2s;
    user-select: none;
    cursor: pointer;
}

.user-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: var(--gray-800);
    margin-bottom: 10px;
    border-radius: 8px;
}
/* Analytics */
.progress-bg {
    width: 100%;
    height: 4px;
    background: var(--gray-700);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.chart-row {
    margin-bottom: 10px;
}

#analytics-activity-list {
    max-height: 300px;
    overflow-y: auto;
}

/* Storage usage warning */
.storage-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--warning);
    color: var(--warning);
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.storage-critical {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

/* Subscription page styles */
.subscription-status {
    border-left: 4px solid var(--primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.price-card {
    padding: 25px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.price-card.featured {
    border: 2px solid var(--primary);
    position: relative;
    transform: scale(1.02);
}

.price-header {
    text-align: center;
    margin-bottom: 20px;
}

.price-header .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
    color: var(--gray-50);
}

.price-header .price span {
    font-size: 1rem;
    color: var(--gray-400);
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.price-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.price-features li i {
    margin-right: 10px;
    width: 20px;
}

.price-features li i.fa-check {
    color: var(--secondary);
}

.price-features li i.fa-xmark {
    color: var(--danger);
}
/* ===== Dashboard Container END ===== */

/*! Modals */
/* --- Chat Feature Styles --- */
.chat-window {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    height: 450px;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    z-index: 2000;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-header {
    padding: 12px 15px;
    background: var(--gray-800);
    border-bottom: 1px solid var(--gray-700);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    font-size: 0.95rem;
    color: var(--gray-100);
}

.chat-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 1rem;
}

.chat-close:hover {
    color: var(--danger);
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.chat-msg {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.chat-msg.sent {
    align-self: flex-end;
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 2px;
}

.chat-msg.received {
    align-self: flex-start;
    background: var(--gray-800);
    color: var(--gray-200);
    border-bottom-left-radius: 2px;
}

.chat-input-area {
    padding: 10px;
    background: var(--gray-800);
    border-top: 1px solid var(--gray-700);
    display: flex;
    margin-top: auto;
    gap: 10px;
}

.chat-input {
    flex: 1;
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

.chat-input:focus {
    border-color: var(--primary);
}

.chat-send-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.chat-send-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Search Model */
.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.search-modal {
    background: var(--gray-800);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--gray-700);
    animation: slideDown 0.3s ease;
}

.search-results-list {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-800);
}

.search-results-list::-webkit-scrollbar {
    width: 6px;
}

.search-results-list::-webkit-scrollbar-track {
    background: var(--gray-800);
    border-radius: 3px;
}

.search-results-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.search-results-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.logout-modal-overlay,
.username-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.logout-modal,
.username-modal {
    background: var(--gray-800);
    padding: 2rem;
    border-radius: var(--radius-md);
    width: min(90%, 400px);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-700);
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-50);
}

.modal-header p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 20px;
}

/* ==== Modals END ==== */

.responsive-grid-container {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

/* Mobile-first responsive grid */
.responsive-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* Tablet and above */
@media (min-width: 768px) {
    .responsive-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 20px;
    }
    
    .responsive-grid-container {
        grid-template-columns: 1fr;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .responsive-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
    
    .responsive-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Received Files - Responsive Cards */
.received-file-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.received-file-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.received-file-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.received-file-sender {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.received-file-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.received-file-info {
    flex: 1;
    min-width: 0;
}

.received-file-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-100);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.received-file-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.received-file-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Shared Files - Responsive Table */
.shared-files-table-container {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    margin-bottom: 30px;
}

.shared-files-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.shared-files-table th {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--gray-300);
    border-bottom: 1px solid var(--gray-800);
}

.shared-files-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-800);
}

.shared-file-row {
    transition: background-color 0.3s ease;
}

.shared-file-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.shared-file-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shared-file-icon {
    color: var(--primary-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.shared-file-details {
    min-width: 0;
}

.shared-file-title {
    font-weight: 500;
    color: var(--gray-100);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shared-file-subtitle {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.shared-recipients {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 200px;
}

.recipient-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-800);
}

.recipient-more {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gray-300);
}

.shared-actions {
    display: flex;
    gap: 8px;
}

/* Quick Links - Responsive Cards */
.quick-link-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--info);
}

.quick-link-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.quick-link-icon {
    color: var(--info);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.quick-link-content {
    flex: 1;
    min-width: 0;
}

.quick-link-title {
    font-weight: 600;
    color: var(--gray-100);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-link-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 15px;
}

.quick-link-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.quick-link-size {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.quick-link-actions {
    display: flex;
    gap: 10px;
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.empty-state-icon {
    font-size: 3rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gray-300);
}

.empty-state-description {
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive adjustments for the sections */
#received-files-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
}

#shared-file tbody {
    display: table-row-group;
}

#quick-links-body {
    display: table-row-group;
}

/* Update existing tables to be responsive */
@media (max-width: 768px) {
    .file-table {
        display: block;
        overflow-x: auto;
    }
    
    .file-table th,
    .file-table td {
        min-width: 120px;
    }
    
    .shared-files-table-container {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    .shared-files-table {
        min-width: 700px;
    }
    
    #received-files-list {
        padding: 15px;
    }
    
    .received-file-card {
        padding: 15px;
    }
    
    .quick-link-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .received-file-actions,
    .quick-link-actions,
    .shared-actions {
        flex-direction: column;
        gap: 5px;
    }
    
    .received-file-actions button,
    .quick-link-actions button,
    .shared-actions button {
        width: 100%;
        justify-content: center;
    }
    
    .received-file-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .quick-link-meta {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .shared-recipients {
        max-width: 150px;
    }
    
    .recipient-avatar {
        width: 24px;
        height: 24px;
    }
    
    .recipient-more {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }
}

/* Loading state */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--gray-400);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    main {
        width: 100%;
    }

    #home-header {
        width: 100%;
        padding: 30px;
    }

    .home-header-logo {
        width: 100%;
    }

    .home-header-logo .header-logo {
        font-size: 1rem;
    }

    .home-header-logo p {
        font-size: 0.6rem;
    }

    .home-header-nav-menu,
    .home-header-btn {
        display: none;
    }

    .home-container {
        margin-top: 1.5rem;
    }

    .home-title {
        text-align: left;
    }

    .home h1 {
        font-size: 3rem;
    }

    .home h1 span {
        font-size: 2.2rem;
    }

    .home p {
        font-size: 1rem;
    }

    .home-links {
        width: 100%;
        flex-direction: column;
        align-items: start;
        justify-content: flex-start;
    }

    .home-links .btn-primary,
    .home-links .btn-secondary {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid,
    .testimonials-slider,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .cta-form {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Dashboard responsive */
    .menu-toggle {
        display: block;
    }

    .sidebar {
        position: fixed;
        left: -280px;
        top: 70px;
        height: calc(100vh - 70px);
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .sidebar.show {
        left: 0;
        width: 300px;
        border-radius: 0px var(--radius-md) var(--radius-md) 0px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .search-container {
        display: none;
    }

    .notification-dropdown {
        right: 20px;
        width: calc(100vw - 40px);
        max-width: 300px;
    }

    .upload-container {
        flex-direction: column;
        padding: 1rem !important;
    }

    .drop-zone {
        width: 100% !important;
        height: 300px !important;
        margin-bottom: 1rem;
    }

    .recent-files {
        width: 100% !important;
        height: auto;
        max-height: 400px;
    }
    
    /* Responsive adjustments for the three sections */
    #shared-files,
    #received-files,
    #quick-links {
        padding: 15px;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .page-header h2 {
        font-size: 1.5rem;
    }
    
    .responsive-card-grid {
        grid-template-columns: 1fr;
    }
    
    .shared-files-table-container {
        margin: 0 -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

@media (max-width: 480px) {
    #home-header , #header{
        padding: 10px 15px;
    }

    .home h1 {
        font-size: 2rem;
    }

    .home h1 span {
        font-size: 1.8rem;
    }

    .home p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .floating-card {
        width: 60px;
        height: 60px;
    }

    .floating-card i {
        font-size: 1.2rem;
    }

    .floating-card p {
        font-size: 0.7rem;
    }

    /* Dashboard mobile */
    .search-container, .user-name {
        display: none;
    }

    .notification-dropdown {
        width: 280px;
        right: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .friends-grid {
        grid-template-columns: 1fr;
    }

    .network-tabs {
        flex-wrap: wrap;
    }

    .chat-window {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    
    /* Further mobile optimizations */
    .received-file-card,
    .quick-link-card {
        padding: 12px;
    }
    
    .received-file-name,
    .quick-link-title {
        font-size: 0.9rem;
    }
    
    .received-file-meta,
    .quick-link-meta {
        font-size: 0.75rem;
    }
    
    .btn-xs {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

@media (max-width: 1024px) {
    .home h1 {
        font-size: 3.5rem;
    }

    .home h1 span {
        font-size: 3rem;
    }

    .features-grid,
    .testimonials-slider,
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    #home-header {
        padding: 10px 20px;
    }

    .home-header-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--gray-900);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .home-header-nav-menu.show {
        display: flex;
    }

    .home-header-btn .header-btn:nth-child(1),
    .home-header-btn .header-btn:nth-child(2) {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .home h1 {
        font-size: 2.5rem;
    }

    .home h1 span {
        font-size: 2.2rem;
    }

    .home-links {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid,
    .testimonials-slider,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .cta-form {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Dashboard responsive */
    .menu-toggle {
        display: block !important;
    }

    .sidebar {
        position: fixed;
        left: -280px;
        top: 70px;
        height: calc(100vh - 70px);
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .sidebar.show {
        left: 0;
    }

    .nav-menu {
        gap: 1rem;
    }

    .search-container {
        display: none;
    }

    .notification-dropdown {
        right: 20px;
        width: calc(100vw - 40px);
        max-width: 300px;
    }

    .upload-container {
        flex-direction: column;
        padding: 1rem !important;
    }

    .drop-zone {
        width: 100% !important;
        height: 300px !important;
        margin-bottom: 1rem;
    }

    .recent-files {
        width: 100% !important;
        height: auto;
        max-height: 400px;
    }

    .containers {
        height: calc(100vh - 60px);
        padding: 5px;
    }

    .content-area {
        padding: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid .state-card:last-child {
        grid-column: span 1;
    }

    .friends-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        height: auto;
        max-height: 400px;
    }

    .friend-card {
        height: auto;
        min-height: 200px;
    }

    .network-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .net-tab {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
    
    /* Responsive updates for the three sections */
    .responsive-card-grid {
        grid-template-columns: 1fr;
    }
    
    .shared-files-table-container {
        border-radius: var(--radius-md);
    }
}

@media (max-width: 480px) {
    #home-header {
        padding: 10px 15px;
    }

    .home h1 {
        font-size: 2rem;
    }

    .home h1 span {
        font-size: 1.8rem;
    }

    .home p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .floating-card {
        width: 60px;
        height: 60px;
    }

    .floating-card i {
        font-size: 1.2rem;
    }

    .floating-card p {
        font-size: 0.7rem;
    }

    .search-container {
        display: none;
    }

    .notification-dropdown {
        width: 280px;
        right: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .friends-grid {
        grid-template-columns: 1fr;
    }

    .network-tabs {
        flex-wrap: wrap;
    }

    .chat-window {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }

    .stat-card {
        padding: 15px;
    }

    .state-card {
        height: auto;
        min-height: 200px;
    }

    .upload-container {
        padding: 0.5rem !important;
    }

    .drop-zone {
        padding: 30px !important;
        height: 250px !important;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .page-header h2 {
        font-size: 1.5rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons button {
        width: 100%;
    }
    
    /* Extra small device optimizations */
    .received-file-card,
    .quick-link-card {
        padding: 10px;
    }
    
    .received-file-avatar {
        width: 32px;
        height: 32px;
    }
    
    .shared-file-icon {
        font-size: 1rem;
    }
    
    .quick-link-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 375px) {
    .home h1 {
        font-size: 1.8rem;
    }

    .home h1 span {
        font-size: 1.5rem;
    }

    .home-links .btn-primary,
    .home-links .btn-secondary {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .friend-card {
        padding: 8px;
    }

    .friend-card h4 {
        font-size: 0.9rem;
    }

    .friend-card p {
        font-size: 0.75rem;
    }

    .btn-xs {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

.mobile-menu-toggle i.fa-bars,
.mobile-menu-toggle i.fa-times {
    transition: transform 0.3s ease;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

@supports (-webkit-touch-callout: none) {
    .drop-zone {
        min-height: 300px;
    }
    
    input, textarea {
        font-size: 16px;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select,
    textarea,
    input {
        font-size: 16px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .nav-item:hover {
        transform: none;
    }
    
    .stat-card:hover {
        transform: none;
    }
    
    .friend-card:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .testimonial-card:hover {
        transform: none;
    }
    
    .pricing-card:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-danger:hover {
        transform: none;
    }
    
    .back-to-top:hover {
        transform: none;
    }
    
    .received-file-card:hover,
    .quick-link-card:hover,
    .shared-file-row:hover {
        transform: none;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .home {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .home-container {
        padding: 40px 20px;
    }
    
    .auth-container {
        align-items: flex-start;
        padding: 20px 0;
    }
    
    .container {
        max-height: 90vh;
        margin: 20px auto;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .glass-effect {
        backdrop-filter: blur(20px);
        overflow: auto;
    }
    
    .notification-dropdown {
        backdrop-filter: blur(20px);
    }
}

@media print {
    .floating-bg,
    .back-to-top,
    .notification-btn,
    .menu-toggle,
    .mobile-menu-toggle,
    .chat-window,
    .toast-container {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .glass-effect {
        background: white;
        border: 1px solid #ddd;
    }
}
