:root {
    --primary-dark: #0a192f;
    --secondary-dark: #112240;
    --accent-blue: #64ffda;
    --text-primary: #e6f1ff;
    --text-secondary: #8892b0;
    --gradient-1: linear-gradient(120deg, #1a365d 0%, #0a192f 100%);
    --gradient-2: linear-gradient(120deg, #64ffda 0%, #0a192f 100%);
    --hover-color: rgba(var(--accent-rgb), 0.1);
    --success-color: #16a34a;
    --error-color: #dc2626;
    --accent-rgb: 100, 255, 218;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

a{
    text-decoration: none;
    color: white;
}


/* width */
::-webkit-scrollbar {
    width: 6px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--primary-dark);
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 20px;
  }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo img {
        height: 32px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.cta-button {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 2rem 16rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--secondary-dark) 60%, var(--primary-dark) 100%);
}

.hero .section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-button.primary {
    background: var(--accent-blue);
    color: var(--primary-dark);
    border: none;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--accent-blue);
    font-size: 1.1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    background: linear-gradient(120deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 12rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

/* Features Section */
.features {
    padding: 14rem 2rem 16rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, var(--secondary-dark) 0%, var(--primary-dark) 50%, var(--secondary-dark) 100%);
    margin-top: -8rem;
    clip-path: path('M 0,8rem C 400,0 800,16rem 100%,8rem L 100%,100% L 0,100% Z');
}

.features .section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    color: var(--text-secondary);
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--accent-blue);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 14rem 2rem 16rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, var(--secondary-dark) 0%, var(--primary-dark) 50%, var(--secondary-dark) 100%);
    margin-top: -8rem;
    clip-path: path('M 0,8rem C 400,0 800,16rem 100%,8rem L 100%,100% L 0,100% Z');
}

.pricing .section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.price-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-card.featured {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.05);
}

.featured-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-blue);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    color: var(--accent-blue);
    font-weight: 700;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    color: var(--text-secondary);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features li i {
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.plan-button {
    width: 100%;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-blue);
    padding: 1rem;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.plan-button:hover {
    background: var(--accent-blue);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.plan-button.featured {
    background: var(--accent-blue);
    color: var(--primary-dark);
}

.plan-button.featured:hover {
    background: transparent;
    color: var(--text-primary);
}

.pricing-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--accent-blue);
}

@media (max-width: 1200px) {
    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features,
    .pricing {
        padding: 6rem 1rem;
    }

    .pricing-info {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .featured-label {
        font-size: 0.8rem;
    }
}

/* How it Works Section */
.how-it-works {
    padding: 14rem 2rem 16rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(195deg, var(--secondary-dark) 0%, var(--primary-dark) 50%, var(--secondary-dark) 100%);
    margin-top: -8rem;
    clip-path: path('M 0,8rem C 200,16rem 600,0 100%,8rem L 100%,100% L 0,100% Z');
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    filter: blur(50px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: floatAnimation 20s infinite alternate;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: -100px;
    animation: floatAnimation 15s infinite alternate-reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: -125px;
    left: 50%;
    animation: floatAnimation 18s infinite alternate;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30px, 30px) rotate(360deg);
    }
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-content {
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    background: var(--accent-blue);
    color: var(--primary-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.step-icon {
    margin: 1rem 0 2rem;
    font-size: 2.5rem;
    color: var(--accent-blue);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.step-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.step-features li {
    color: var(--text-secondary);
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-features li i {
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.step-arrow {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-blue);
    font-size: 1.5rem;
    z-index: 2;
}

.action-container {
    margin-top: 6rem;
}

.action-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.action-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.action-content {
    margin-bottom: 2rem;
}

.action-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(120deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.action-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.start-button {
    background: var(--accent-blue);
    color: var(--primary-dark);
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.start-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.start-button i {
    transition: transform 0.3s ease;
}

.start-button:hover i {
    transform: translateX(5px);
}

.action-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.feature span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 6rem 1rem;
    }

    .action-box {
        padding: 2rem 1rem;
    }

    .action-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .action-content h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--primary-dark);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.1);
}

.submit-button {
    background: var(--accent-blue);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Section Transitions */
section {
    position: relative;
    z-index: 1;
    transition: background-color 0.6s ease-in-out;
}

section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(10, 15, 30, 0) 0%,
        rgba(10, 15, 30, 0.4) 40%,
        rgba(10, 15, 30, 0.8) 80%,
        rgba(10, 15, 30, 1) 100%
    );
    pointer-events: none;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .features, .pricing, .how-it-works, .contact {
    animation: fadeUp 1s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-content {
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-content:hover {
    transform: translateY(-5px);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Section background transitions */
.section-background {
    transition: opacity 0.6s ease-in-out;
}

.gradient-overlay {
    transition: opacity 0.6s ease-in-out;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 30, 0.8) 0%,
        rgba(10, 15, 30, 0.4) 50%,
        rgba(10, 15, 30, 0.8) 100%
    );
}

/* Enhanced animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 12rem;
    }

    .features,
    .how-it-works,
    .pricing {
        margin-top: -6rem;
        padding: 10rem 1rem 12rem;
        clip-path: path('M 0,4rem C 200,0 400,8rem 100%,4rem L 100%,100% L 0,100% Z');
    }
}

/* Authentication Pages */
.auth-section {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7.55rem 2rem;
    position: relative;
    overflow: hidden;
}

.auth-container {
    width: 100%;
    max-width: 500px;
    z-index: 1;
}

.auth-box {
    background: rgba(17, 34, 64, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.auth-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-blue);
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.1);
}

.form-group .fas {
    margin-right: 0.5rem;
    color: var(--accent-blue);
}

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: var(--accent-blue);
}

.auth-links span {
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .auth-container {
        padding: 0 1rem;
    }
    
    .auth-box {
        padding: 2rem 1.5rem;
    }
}

/* Dashboard Styles */
.dashboard-body {
    background-color: var(--primary-dark);
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.dashboard-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(17, 34, 64, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-left .logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-left .nav-links {
    display: flex;
    gap: 2rem;
}

.nav-left .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-left .nav-links a:hover,
.nav-left .nav-links a.active {
    color: var(--accent-blue);
}

.nav-left .nav-links a i {
    font-size: 1.1rem;
}

.nav-right {
    display: flex;
    align-items: center;
}

.user-profile {
    position: relative;
    cursor: pointer;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-info:hover {
    background: rgba(100, 255, 218, 0.1);
}

.user-name {
    color: var(--text-primary);
    font-weight: 500;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-blue);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: rgba(17, 34, 64, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.dropdown-header .user-details {
    display: flex;
    flex-direction: column;
}

.dropdown-header .user-email {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dropdown-content {
    padding: 0.5rem;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent-blue);
}

.dropdown-content i {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.dropdown-content a:hover i {
    color: var(--accent-blue);
}

.dropdown-divider {
    height: 1px;
    background: rgba(100, 255, 218, 0.1);
    margin: 0.5rem 0;
}

.logout-link {
    color: #ff6b6b !important;
}

.logout-link:hover {
    background: rgba(255, 107, 107, 0.1) !important;
    color: #ff6b6b !important;
}

.logout-link i {
    color: #ff6b6b !important;
}

.dashboard-content {
    padding-top: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.settings-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* User Plan Section */
.user-plan-section {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.plan-info h2 {
    color: var(--accent);
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.storage-info {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.storage-used, .storage-limit {
    color: var(--text-primary);
    font-weight: 500;
}

.storage-bar {
    width: 100%;
    height: 8px;
    background: var(--primary-dark);
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
    position: relative;
}

.storage-progress {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

.storage-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(100, 255, 218, 0.1),
        rgba(100, 255, 218, 0.3),
        rgba(100, 255, 218, 0.1)
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.storage-used[data-usage="warning"] {
    background: linear-gradient(90deg, #f6ad55 0%, #ed8936 100%);
}

.storage-used[data-usage="danger"] {
    background: linear-gradient(90deg, #fc8181 0%, #f56565 100%);
}

.storage-used[data-usage="danger"] {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Animacja dla nowych plików */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table-row.new-file {
    animation: slideIn 0.5s ease forwards;
}

/* Animacja ładowania */
.upload-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(100, 255, 218, 0.1);
    z-index: 9999;
}

.upload-progress-bar {
    height: 100%;
    background: var(--accent-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

/* System powiadomień */
.notification-system {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 10px;
    pointer-events: none;
}

.notification {
    pointer-events: auto;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    background: var(--secondary-dark);
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    border-left: 4px solid;
    animation: slideInUp 0.3s ease forwards;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.notification::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    animation: notificationProgress 5s linear forwards;
}

.notification i {
    font-size: 1.2rem;
}

.notification.success {
    border-left-color: #48bb78;
    background: linear-gradient(90deg, rgba(72, 187, 120, 0.1) 0%, var(--secondary-dark) 100%);
}

.notification.success i {
    color: #48bb78;
}

.notification.error {
    border-left-color: #f56565;
    background: linear-gradient(90deg, rgba(245, 101, 101, 0.1) 0%, var(--secondary-dark) 100%);
}

.notification.error i {
    color: #f56565;
}

.notification.info {
    border-left-color: var(--accent-blue);
    background: linear-gradient(90deg, rgba(100, 255, 218, 0.1) 0%, var(--secondary-dark) 100%);
}

.notification.info i {
    color: var(--accent-blue);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes notificationProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Upload Loader */
.upload-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.loader-content i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.loader-content p {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Drag and Drop Styles */
.files-container.drag-over {
    border: 2px dashed var(--accent-blue);
    background: rgba(100, 255, 218, 0.05);
}

.files-container {
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
}

/* Style dla modalu udostępniania */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--primary-dark);
    border-radius: 8px;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: var(--text-primary);
    margin: 0;
}

.close-button {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.close-button:hover {
    color: var(--text-primary);
}

.share-link-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.share-link-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--text-secondary);
    border-radius: 4px;
    background-color: var(--secondary-dark);
    color: var(--text-primary);
}

.copy-button {
    padding: 10px 20px;
    background-color: var(--accent-blue);
    color: var(--primary-dark);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Style dla menu opcji pliku */
.file-options-menu {
    display: none;
    position: absolute;
    background-color: var(--primary-dark);
    border: 1px solid var(--text-secondary);
    border-radius: 4px;
    padding: 5px 0;
    min-width: 150px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.menu-item {
    padding: 8px 15px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.menu-item:hover {
    background-color: var(--secondary-dark);
}

.menu-item i {
    width: 16px;
}

/* Style dla komunikatów toast */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 1100;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background-color: #4caf50;
}

.toast.error {
    background-color: #f44336;
}

.toast.info {
    background-color: #2196f3;
}

/* Style dla spinnera */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--text-secondary);
    border-top: 4px solid var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: var(--text-primary);
    margin-top: 15px;
    font-size: 16px;
}

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

/* Style dla przycisku upload */
.btn-upload {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--accent-blue);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-upload i {
    font-size: 16px;
}

/* Style dla storage bar */
.storage-bar {
    width: 100%;
    height: 8px;
    background-color: var(--secondary-dark);
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

.storage-used {
    height: 100%;
    background-color: var(--accent-blue);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Animacja dla storage bara przy aktualizacji */
@keyframes storageUpdate {
    0% {
        opacity: 0.7;
        transform: scaleX(0.98);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.storage-update-animation {
    animation: storageUpdate 0.3s ease-out;
    transform-origin: left;
}

.storage-bar {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 8px;
    overflow: hidden;
    margin: 0.5rem 0;
    position: relative;
}

.storage-used {
    background-color: var(--accent-color);
    height: 100%;
    transition: width 0.3s ease-out;
    border-radius: 8px;
}

.storage-used[data-usage="warning"] {
    background-color: #ffa500;
}

.storage-used[data-usage="danger"] {
    background-color: #ff4444;
}

.storage-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Dodaj kolory ostrzegawcze gdy przekroczymy określone progi */
.storage-used[data-usage="warning"] {
    background-color: #ffa500;
}

.storage-used[data-usage="danger"] {
    background-color: #ff4444;
}

/* User Plan Section */
.user-plan-section {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(100, 255, 218, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.plan-info h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.storage-info {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.storage-used, .storage-limit {
    color: var(--text-primary);
    font-weight: 500;
}

.storage-bar {
    width: 100%;
    height: 8px;
    background: var(--primary-dark);
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
    position: relative;
}

.storage-progress {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

.storage-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(100, 255, 218, 0.1),
        rgba(100, 255, 218, 0.3),
        rgba(100, 255, 218, 0.1)
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.storage-used[data-usage="warning"] {
    background: linear-gradient(90deg, #f6ad55 0%, #ed8936 100%);
    box-shadow: 0 0 10px rgba(237, 137, 54, 0.2);
}

.storage-used[data-usage="danger"] {
    background: linear-gradient(90deg, #fc8181 0%, #f56565 100%);
    box-shadow: 0 0 10px rgba(245, 101, 101, 0.2);
}

.storage-used[data-usage="danger"] {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Animacje dla nowych plików */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table-row.new-file {
    animation: slideIn 0.5s ease forwards;
}

/* Animacja ładowania */
.upload-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(100, 255, 218, 0.1);
    z-index: 9999;
}

.upload-progress-bar {
    height: 100%;
    background: var(--accent-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

/* Style dla przycisku usuwania i checkboxów */
.btn-delete {
    background: #f56565;
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: #e53e3e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 101, 101, 0.2);
}

/* Style dla checkboxów */
.file-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    transition: all 0.3s ease;
}

.file-checkbox:checked {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

.file-checkbox:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-dark);
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.file-checkbox:hover {
    border-color: var(--accent-blue);
}

#selectAll {
    margin-right: 12px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
}

.stat-card {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
}

.stat-info {
    flex: 1;
}

.stat-value {
    display: block;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Recent Files Section */
.dashboard-sections {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.section-header h2 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.view-all {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

.recent-files {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.file-card {
    background: var(--primary-dark);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.file-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: var(--secondary-dark);
}

.file-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(100, 255, 218, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.file-info {
    flex: 1;
    min-width: 0;
}

.file-info h3 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.file-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.file-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(100, 255, 218, 0.1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-action:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* File List Styles */
.files-table {
    background: var(--secondary-dark);
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    margin-top: 2rem;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.table-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 1fr;
    padding: 1rem;
    background: rgba(13, 18, 34, 0.95);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.header-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.table-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 1fr 1fr;
    padding: 1rem;
    align-items: center;
    border-bottom: 1px solid rgba(100, 255, 218, 0.05);
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background: rgba(13, 18, 34, 0.95);
}

.file-name-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-name-cell i {
    color: var(--accent);
    font-size: 1.2rem;
}

.file-size,
.file-date,
.file-views {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.public {
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent);
}

.status-badge.private {
    background: rgba(136, 146, 176, 0.1);
    color: var(--text-secondary);
}

.no-files {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    align-items: center;
}

.btn-upload {
    background:  #64ffdbb0;
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 255, 218, 0.2);
}

/* Checkbox Styles */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
    position: relative;
}

input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}

input[type="checkbox"]:checked::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-dark);
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Upload Progress */
.upload-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-dark);
    padding: 1rem;
    display: none;
    z-index: 1000;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.progress-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 8px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0;
    transition: width 0.3s ease;
    border-radius: 8px;
}

.upload-status {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Dropdown styles */
.user-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background: var(--secondary-dark);
}

.dropdown-toggle .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.dropdown-toggle .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-toggle .username {
    color: var(--text-primary);
    font-weight: 500;
}

.dropdown-toggle .fa-chevron-down {
    color: var(--text-secondary);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--primary-dark);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dropdown-header .user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.dropdown-header .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-name {
    color: var(--text-primary);
    font-weight: 500;
}

.user-email {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.dropdown-content {
    padding: 0.5rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent-blue);
}

.dropdown-item i {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.dropdown-item:hover i {
    color: var(--accent-blue);
}

.dropdown-divider {
    height: 1px;
    background: rgba(100, 255, 218, 0.1);
    margin: 0.5rem 0;
}

.logout-link {
    color: #f56565;
}

.logout-link i {
    color: #f56565;
}