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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-glow: #6366f133;
    --secondary-color: #f8fafc;
    --accent-color: #06b6d4;
    --accent-light: #22d3ee;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Neutral Colors */
    --white: #ffffff;
    --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;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 20px rgb(99 102 241 / 0.3);
    --shadow-glow-lg: 0 0 40px rgb(99 102 241 / 0.2);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

p {
    margin-bottom: var(--spacing-4);
    color: var(--gray-600);
}

/* Modern Buttons */
.btn-primary, .btn-secondary, .btn-outline, .get-started-btn, .schedule-btn, .nav-auth-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-6);
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-bounce);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary, .get-started-btn, .schedule-btn, .nav-auth-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary::before, .get-started-btn::before, .schedule-btn::before, .nav-auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover::before, .get-started-btn:hover::before, .schedule-btn:hover::before, .nav-auth-btn:hover::before {
    left: 100%;
}

.btn-primary:hover, .get-started-btn:hover, .schedule-btn:hover, .nav-auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width var(--transition-normal);
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-large {
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-base);
}

/* Modern Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    box-shadow: 0 1px 6px 0 rgba(80, 112, 255, 0.03);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: #38bdf8;
    margin: 0;
    background: none;
    box-shadow: none;
    transform: translateX(13px);
}

/* .logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width var(--transition-normal);
} */

.logo:hover::after {
    width: 100%;
}

.logo-img {
    width: 54px;
    height: 200px;
    object-fit: contain;
    margin-right: 0.2rem;
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: 2.5rem;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.15rem;
    transition: color 0.18s;
    padding: 0.2rem 0.1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #6366f1;
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-container {
    margin-left: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    min-width: 180px;
    z-index: 1001;
    overflow: hidden;
    margin-top: var(--spacing-2);
    padding: 0.3rem 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: 0.7rem 1.2rem;
    color: var(--gray-700);
    text-decoration: none;
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
    cursor: pointer;
    min-width: 120px;
    max-width: 260px;
    white-space: nowrap;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: var(--gray-50);
    color: var(--primary-color);
}

.menu-item i {
    width: 20px;
    min-width: 20px;
    text-align: center;
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.menu-item:hover i {
    color: var(--primary-color);
}

.schedule-btn {
    background: linear-gradient(135deg, #6366f1 60%, #6c63ff 100%);
    color: #fff !important;
    border: none;
    padding: 0.7rem 2.1rem;
    border-radius: 1.7rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 2px 8px 0 rgba(80, 112, 255, 0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-left: 2.5rem;
    outline: none;
}
.schedule-btn:hover {
    background: linear-gradient(135deg, #6c63ff 60%, #6366f1 100%);
    box-shadow: 0 4px 16px 0 rgba(80, 112, 255, 0.13);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
    .navbar {
        padding: 0 1rem;
        height: 56px;
    }
    .logo-img {
        width: 40px;
        height: 40px;
    }
    .nav-links {
        gap: 1.2rem;
        margin-left: 1.2rem;
    }
    .schedule-btn {
        padding: 0.6rem 1.3rem;
        font-size: 1rem;
        margin-left: 1.2rem;
    }
}

/* Make both icon and text white */
.schedule-btn * {
    color: #fff !important;
}

/* Ensure text is white */
.schedule-btn {
    color: #fff !important;
}

.container {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
    padding-top: 60px;
}

.meeting-form {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--primary-light); /* Changed from purple to cyan theme variable */
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    z-index: 1000;
}

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

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(114, 244, 227, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Override default styles for date and time inputs */
input[type="date"],
input[type="time"] {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.05);
    padding-right: 2rem !important;
    position: relative;
}

/* Custom calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    background-color: transparent;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    cursor: pointer;
    opacity: 0.8;
}

/* Calendar icon for date input */
input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z'/%3E%3C/svg%3E");
}

/* Clock icon for time input */
input[type="time"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
}

input[type="date"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Changed from purple gradient to cyan theme gradient */
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 0.35rem;
    margin-top: 2rem;
    padding: 0.15rem;
}

.meeting-card {
    background: rgba(114, 244, 227, 0.05);
    border: 2px solid rgba(114, 244, 227, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
                0 0 10px rgba(114, 244, 227, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 350px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.meeting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15),
                0 0 20px rgba(114, 244, 227, 0.2);
    border-color: rgba(114, 244, 227, 0.5);
}

.meeting-info {
    margin-bottom: 1.5rem;
}

.meeting-card h3 {
    color: #6366f1;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.meeting-card p {
    color: #94a3b8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

/* Meeting info icons (clock, calendar, etc) */
.meeting-card p i.far,
.meeting-card p i.fas {
    color: #6366f1;
    width: 16px;
    margin-right: 10px;
    text-align: center;
    font-size: 0.85rem; /* Increased from 0.75rem */
}

.meeting-link-container {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    background: rgba(114, 244, 227, 0.1);  /* Changed from purple to cyan */
    padding: 0.5rem;
    border-radius: 8px;
}

.meeting-link-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #72F4E3;  /* Changed from purple to cyan */
    font-size: 0.9rem;
    padding: 0.5rem;
    cursor: text;
}

.copy-btn {
    background: rgba(114, 244, 227, 0.2);  /* Changed from purple to cyan */
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(114, 244, 227, 0.4);  /* Changed from purple to cyan */
}

/* Action icons specific styling */
.card-join-btn i.fa-video {
    font-size: 1.25rem; /* Increased from 0.85rem */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* top: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 0;
}

.delete-btn i.fa-trash {
    font-size: 1.25rem; /* Increased from 0.85rem */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* top: 0; */
}
.copy-btn i.fa-copy,
.delete-btn i.fa-trash {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 0;
}

.copy-btn i.fa-copy {
    font-size: 0.95rem; /* Increased from 0.85rem */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0; /* Reset top position */
}

/* Meeting card buttons */
.card-join-btn, .delete-btn {
    width: 100%;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    height: 32px;
    line-height: 32px; /* Match height for vertical centering */
}

/* Ensure vertical alignment */
.card-join-btn i, 
.delete-btn i,
.copy-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: 1;
}

.card-join-btn {
    background: linear-gradient(135deg, #72F4E3, #4A90E2);  /* Changed from purple gradient to cyan theme gradient */
    color: white;
    box-shadow: 0 0 10px rgba(114, 244, 227, 0.15);
}

.card-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(114, 244, 227, 0.25);
}

.delete-btn {
    background: transparent;
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    height: 32px;
}

.delete-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    transform: translateY(-2px);
}

.video-meeting {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1a1a;
    z-index: 1000;
}

.video-header {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 2;
    transform: translateX(-50%);
    border-radius: 50px;
    min-width: 300px;
}

.meeting-controls {
    display: flex;
    gap: 1.5rem;
    margin: 0 auto;
}

.control-btn {
    background-color: rgba(114, 244, 227, 0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
}

.control-btn:hover {
    background-color: rgba(114, 244, 227, 0.4);
    transform: translateY(-2px);
}

.control-btn.leave {
    background-color: #dc3545;
}

.control-btn.leave:hover {
    background-color: #c82333;
}

.control-btn.active {
    background-color: rgba(114, 244, 227, 0.6);
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
    height: calc(100vh - 150px);
    overflow-y: auto;
}

.participant-container {
    position: relative;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.participant-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure remote videos are not mirrored */
    transform: scaleX(1);
}

/* Mirror only local video */
#participant-local video {
    transform: scaleX(-1);
}

/* Ensure video quality */
video {
    image-rendering: -webkit-optimize-contrast;  /* For Webkit browsers */
    image-rendering: crisp-edges;                /* For Firefox */
    -webkit-backface-visibility: hidden;         /* Prevent blurry text during transforms */
    backface-visibility: hidden;
}

.participant-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

/* For 2 participants */
.video-grid:has(.participant-container:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
}

/* For 3 or 4 participants */
.video-grid:has(.participant-container:nth-child(3)),
.video-grid:has(.participant-container:nth-child(4)) {
    grid-template-columns: repeat(2, 1fr);
}

/* For more than 4 participants */
.video-grid:has(.participant-container:nth-child(5)) {
    grid-template-columns: repeat(3, 1fr);
}

/* Audio indicator styles */
.audio-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 50%;
    color: white;
}

.audio-indicator.speaking {
    border: 2px solid #4CAF50;
}

/* Meeting controls */
.meeting-controls {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 50px;
    z-index: 1000;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #333;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: #444;
}

.control-btn.active {
    background: #4CAF50;
}

.control-btn.leave {
    background: #f44336;
}

.control-btn.leave:hover {
    background: #d32f2f;
}

/* Screen sharing styles */
.screen-share {
    border: 2px solid #4CAF50;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 10px; /* Increased from 80px */
}

/* Modern Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    display: flex;
    align-items: center;
    justify-content: center; /* Center the hero section horizontally */
    min-height: 100vh;
    gap: 10rem; /* Add space between hero-content and hero-visual */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--accent-color) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1, .hero h1 {
    font-size: var(--font-size-6xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-6);
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p, .hero p {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-12);
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-8);
    animation: slideInLeft 1s ease-out 0.6s both;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-glow);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.gradient-sphere {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-4);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    transition: all var(--transition-normal);
    animation: cardFloat 8s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: -2s;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

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

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.floating-card i {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
}

.floating-card span {
    font-weight: 600;
    color: var(--gray-700);
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #72F4E3, #4A90E2);
    color: var(--text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(114, 244, 227, 0.3);
    color: var(--text-light);
}

/* Modern Sections */
.section {
    padding: var(--spacing-24) 0;
    background: var(--white);
    position: relative;
    transform: translateZ(0);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.section-heading {
    text-align: center;
    margin-bottom: var(--spacing-16);
    font-size: var(--font-size-4xl);
    background: linear-gradient(135deg, var(--gray-900), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Features Section */
.features {
    padding: var(--spacing-24) 0;
    background: var(--white);
    position: relative;
    transform: translateZ(0);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.feature-card {
    padding: var(--spacing-8);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-3xl);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-6);
    color: var(--white);
    font-size: var(--font-size-2xl);
    box-shadow: var(--shadow-glow);
    transition: transform var(--transition-normal);
    will-change: transform;
}

.feature-card:hover i {
    transform: scale(1.05);
}

.feature-card h3 {
    margin-bottom: var(--spacing-4);
    font-size: var(--font-size-xl);
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Modern How It Works Section */
#how-it-works {
    background: linear-gradient(120deg, #f7faff 60%, #e6f0fa 100%);
    padding: 80px 0 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#how-it-works .section-heading {
    color: #4d5bbf;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5rem;
    letter-spacing: -1px;
}

#how-it-works .section-subtitle {
    color: #6b7280;
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4.5rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    flex: 1 1 0;
    min-width: 220px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5b7fff 60%, #3ecbff 100%);
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 32px 0 rgba(80, 112, 255, 0.13);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    z-index: 2;
    border: 4px solid #f7faff;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222b45;
    margin-bottom: 0.7rem;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.step p {
    color: #5b5e6d;
    font-size: 1.08rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.7;
}

/* Connecting lines between steps - perfectly aligned with step circles */
.steps::before, .steps::after {
    content: '';
    display: block;
    position: absolute;
    top: 60px;
    width: calc((33.333% - 80px) / 2); /* half the distance between circles */
    height: 4px;
    background: linear-gradient(90deg, #3ecbff 0%, #5b7fff 100%);
    z-index: 1;
    border-radius: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.steps::before {
    transform: translateX(-120%);
}
.steps::after {
    transform: translateX(120%);
}

@media (max-width: 1024px) {
    .steps {
        gap: 2.2rem;
    }
    .steps::before, .steps::after {
        width: calc((20% - 60px) / 2);
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 60px;
    }
    .steps::before {
        transform: translateX(-120%);
    }
    .steps::after {
        transform: translateX(120%);
    }
}
@media (max-width: 800px) {
    .steps {
        flex-direction: column;
        gap: 2.5rem;
    }
    .steps::before, .steps::after {
        display: none;
    }
    .step {
        max-width: 100%;
    }
}

/* Waitlist Section */
.waitlist-section {
    padding: var(--spacing-24) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark), var(--accent-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
    position: relative;
    z-index: 1;
}

.waitlist-container h2 {
    color: var(--white);
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-4);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.waitlist-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-8);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.waitlist-form .form-group {
    text-align: left;
}

.waitlist-form label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-2);
    font-size: var(--font-size-base);
}

.waitlist-form input {
    width: 100%;
    padding: var(--spacing-4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.waitlist-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-xl);
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-bounce);
    margin-top: var(--spacing-4);
}

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

.waitlist-success {
    text-align: center;
    padding: var(--spacing-8);
}

.waitlist-success i {
    color: var(--success-color);
    font-size: var(--font-size-5xl);
    margin-bottom: var(--spacing-4);
}

.waitlist-success h3 {
    color: var(--white);
    margin-bottom: var(--spacing-2);
    font-size: var(--font-size-2xl);
}

.waitlist-success p {
    color: rgba(255, 255, 255, 0.9);
}

/* Modern Pricing Section */
.pricing {
    padding: var(--spacing-24) 0;
    background: var(--white);
    position: relative;
    transform: translateZ(0);
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.pricing-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(24, 24, 27, 0.8));
    border: 1px solid rgba(114, 244, 227, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    overflow: visible;
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(
        145deg,
        rgba(114, 244, 227, 0.3),
        transparent,
        rgba(139, 92, 246, 0.3)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(28, 28, 28, 0.95), rgba(26, 26, 29, 0.85));
}

.pricing-card.popular {
    background: linear-gradient(145deg, rgba(30, 30, 34, 0.95), rgba(28, 28, 32, 0.9));
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(114, 244, 227, 0.15);
    border: 1px solid #72F4E3;
    animation: borderGlow 2s infinite;
}

@keyframes borderGlow {
    0% { box-shadow: 0 0 20px rgba(114, 244, 227, 0.2); }
    50% { box-shadow: 0 0 40px rgba(114, 244, 227, 0.4); }
    100% { box-shadow: 0 0 20px rgba(114, 244, 227, 0.2); }
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #72F4E3, #4A90E2);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(114, 244, 227, 0.3);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Add hover effect for better interaction */
.pricing-card:hover .pricing-header h3 {
    background: linear-gradient(135deg, #fff, #e2e2e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.price {
    margin: 1.5rem 0;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #72F4E3;
    letter-spacing: -1px;
    line-height: 1;
}

.price .period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.features-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.features-list i {
    font-size: 0.9rem;
    padding: 0.6rem;
    border-radius: 10px;
    width: 2.2rem;
    height: 2.2rem;
    color: #72F4E3;
}

.pricing-cta {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #72F4E3, #4A90E2);
    color: white;
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: auto;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(114, 244, 227, 0.3);
}

/* Remove the different styles for first and last card buttons */
.pricing-card:first-child .pricing-cta,
.pricing-card:last-child .pricing-cta {
    background: linear-gradient(135deg, #72F4E3, #4A90E2);
    box-shadow: 0 4px 15px rgba(114, 244, 227, 0.3);
}

/* Unified hover effect for all buttons */
.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 244, 227, 0.4);
    background: linear-gradient(135deg, #5ad8c8, #3a80d2);
}

/* Remove specific hover effects */
.pricing-card:first-child .pricing-cta:hover,
.pricing-card:last-child .pricing-cta:hover {
    background: linear-gradient(135deg, #5ad8c8, #3a80d2);
    border: none;
}

@media (max-width: 1200px) {
    .pricing-grid {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        min-height: 550px;
    }
}

.sales-form-container {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(24, 24, 27, 0.8));
    border: 1px solid rgba(114, 244, 227, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 500px;
    margin: 6rem auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.sales-form-container h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.sales-description {
    color: #fff;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

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

.sales-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.sales-form input,
.sales-form select, 
.sales-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(114, 244, 227, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sales-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' height='24' viewBox='0 0 24 24' width='24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.sales-form select option {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem;
}

.sales-form textarea {
    min-height: 150px;
    resize: vertical;
    padding: 1rem;
}

.sales-form input:focus,
.sales-form select:focus,
.sales-form textarea:focus {
    outline: none;
    border-color: rgba(114, 244, 227, 0.5);
    box-shadow: 0 0 0 2px rgba(114, 244, 227, 0.1);
}

.sales-form input::placeholder,
.sales-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sales-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(114, 244, 227, 0.2);
}

.sales-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 244, 227, 0.3);
    background: linear-gradient(135deg, #5457ea, #7d4be4);
}

/* For any code blocks or monospace text */
pre, code, .code-text {
    font-family: 'JetBrains Mono', monospace;
}

.success-message {
    display: none;
    align-items: center;
    gap: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.success-message i {
    font-size: 1.5rem;
}

.success-message p {
    margin: 0;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #72F4E3; /*chnage to cyan*/
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.loading p {
    color: #fff;
    font-size: 1.1rem;
}

.video-container {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #000;
}

.video-grid {
    display: grid;
    gap: 20px;
    padding: 20px;
    height: 100vh; /* Full height */
    width: 100%;
}

/* Grid layouts */
.video-grid.participants-1 {
    grid-template-columns: 1fr;
}

.video-grid.participants-2 {
    grid-template-columns: repeat(2, 1fr);
}

.video-grid.participants-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
}

.video-grid.participants-3 .participant-container:first-child {
    grid-column: 1 / -1;
}

.video-grid.participants-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.participant-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.participant-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure remote videos are not mirrored */
    transform: scaleX(1);
}

/* Mirror only local video */
#participant-local video {
    transform: scaleX(-1);
}

/* Ensure video quality */
video {
    image-rendering: -webkit-optimize-contrast;  /* For Webkit browsers */
    image-rendering: crisp-edges;                /* For Firefox */
    -webkit-backface-visibility: hidden;         /* Prevent blurry text during transforms */
    backface-visibility: hidden;
}

.participant-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

/* For 2 participants */
.video-grid:has(.participant-container:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
}

/* For 3 or 4 participants */
.video-grid:has(.participant-container:nth-child(3)),
.video-grid:has(.participant-container:nth-child(4)) {
    grid-template-columns: repeat(2, 1fr);
}

/* For more than 4 participants */
.video-grid:has(.participant-container:nth-child(5)) {
    grid-template-columns: repeat(3, 1fr);
}

/* Audio indicator styles */
.audio-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 50%;
    color: white;
}

.audio-indicator.speaking {
    border: 2px solid #4CAF50;
}

/* Meeting controls */
.meeting-controls {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 50px;
    z-index: 1000;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #333;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: #444;
}

.control-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.control-btn.active {
    background: #f44336;
    animation: pulse 2s infinite;
}

.control-btn.leave {
    background: #f44336;
}

.control-btn.leave:hover {
    background: #d32f2f;
}

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

/* Recording indicator */
.recording-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(244, 67, 54, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
    z-index: 1000;
}

.recording-indicator i {
    color: #fff;
}

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

/* Upload progress bar */
.upload-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #4CAF50;
    transition: width 0.3s ease;
    z-index: 2000;
}

/* .nav-auth-btn.user-logged-in {
    background: none;
    border-radius: 0;
    padding: 0.5rem 0;
} */

/* .nav-auth-btn.user-logged-in:hover {
    background: none;
} */

/* .nav-auth-btn.user-logged-in img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
} */

/* .nav-auth-btn.user-logged-in span {
    color: var(--gray-700);
    font-weight: 600;
} */

/* Hide logo when user is logged in */
/* body:has(.nav-auth-btn.user-logged-in) .logo {
    display: none;
} */

/* Loading animation styles */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: #6366f1;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(114, 244, 227, 0.1);
    border-radius: 50%;
    border-top-color: #6366f1;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

.loading-text {
    color: #6366f1;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hide meetings grid when loading */
.meetings-grid.loading {
    display: none;
}

/* Hide no meetings message when loading */
.no-meetings.loading {
    display: none;
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    left: 0;
    top: 60px;
    height: calc(100vh - 60px);
    width: 250px;
    background: rgba(0, 0, 0, 0.9);
    border-right: 1px solid rgba(114, 244, 227, 0.2); /* Changed from purple to cyan */
    transition: all 0.3s ease;
    z-index: 98;
}

.sidebar.collapsed {
    left: -250px; /* Change from transform to left position */
}

.sidebar-toggle {
    position: fixed;
    left: 20px;
    top: 75px;
    width: 35px;
    height: 35px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 100;
}

.sidebar-toggle:hover {
    color: #6366f1;
    transform: none;
}

.sidebar.collapsed + .main-content .sidebar-toggle {
    left: 20px; /* Keep toggle button visible when sidebar is collapsed */
}

.sidebar-content {
    padding: 60px 0 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.sidebar.collapsed .sidebar-content {
    opacity: 0;
}

.sidebar-item {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    background: rgba(114, 244, 227, 0.1);
}

.sidebar-item.active {
    background: rgba(114, 244, 227, 0.2); /* Changed from purple to cyan */
    border-left: 3px solid var(--primary-color); /* Changed from purple to cyan theme variable */
}

.sidebar-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.sidebar.collapsed .sidebar-item span {
    display: none;
}

/* Main content styles */
.main-content {
    position: fixed;
    /* left: 0; */
    left: 250px;
    right: 0;
    top: 60px;
    bottom: 0;
    padding: 30px;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.main-content.expanded {
    left: 0; /* Change from transform to left position */
}

.content-section {
    display: none; /* Hide by default */
    height: 100%;
    padding-top: 20px;
    overflow-y: auto;
}

.content-section.active {
    display: block; /* Show when active */
}

/* GitHub form styles */
.github-form {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.input-with-help {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-help i {
    margin-left: 10px;
    color: #72F4E3;
    cursor: help;
}

/* Update toggle button positioning */
.sidebar-toggle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    z-index: 99;
}

/* GitHub settings view mode */
.settings-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    max-width: 600px;
}

.settings-item {
    margin-bottom: 20px;
}

.settings-item label {
    display: block;
    color: #666;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.token-display, .repo-display {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-family: monospace;
}

.edit-btn {
    background: transparent;
    border: 1px solid #72F4E3;
    color: #72F4E3;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: rgba(114, 244, 227, 0.1);
}

/* GitHub Repository Table Styles */
.repos-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.repos-table-header h2 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.add-repo-btn {
    background: linear-gradient(135deg, #72F4E3, #4A90E2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.add-repo-btn:hover {
    background: linear-gradient(135deg, #5ad8c8, #3a80d2);
}

.repos-table {
    width: 100%;
    overflow-x: auto;
}

.repos-table table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

.repos-table th {
    text-align: left;
    padding: 12px;
    background: rgba(114, 244, 227, 0.1);
    font-weight: 500;
    font-size: 0.9rem;
    color: #72F4E3;
}

.repos-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.repo-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.repo-status.connected {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.repo-actions {
    display: flex;
    gap: 8px;
}

.repo-action-btn {
    background: transparent;
    border: none;
    color: #72F4E3;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.repo-action-btn:hover {
    background: rgba(114, 244, 227, 0.1);
}

.repo-action-btn.delete {
    color: #ef4444;
}

.repo-action-btn.delete:hover {
    background: rgba(239, 68, 68, 0.1);
}

.close-form-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    transition: color 0.3s ease;
}

.close-form-btn:hover {
    color: #ef4444;
}

/* Summary and Code Modals */
.summary-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.summary-modal-content {
    background-color: #1a1a1a;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.summary-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.summary-modal-header h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.summary-modal-date {
    color: #aaa;
    font-size: 0.9rem;
    margin-left: auto;
    margin-right: 40px;
}

.close-summary-modal {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close-summary-modal:hover {
    color: white;
}

.summary-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
    background-color: #f8f9fa;
    color: #333;
}

.summary-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.summary-content {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    max-height: 500px;
    overflow-y: auto;
}

.summary-content h1, 
.summary-content h2, 
.summary-content h3 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    color: #343a40;
}

.summary-content ul {
    padding-left: 20px;
}

.summary-content code {
    background-color: #e9ecef;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
}

.summary-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.error-message {
    color: #dc3545;
    font-weight: bold;
    padding: 10px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

.loading {
    padding: 20px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

/* Button styles */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    cursor: pointer;
}

.btn-primary {
    color: var(--text-light);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: var(--text-light);
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-secondary {
    color: var(--text-light);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    color: var(--text-light);
    background-color: #3a80d2; /* Darker blue */
    border-color: #3a80d2;
}

.summary-section {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(91, 193, 184, 0.2); /* Adjust this for each theme */
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.summary-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary-container {
    min-height: 100px;
}

.summary-placeholder {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 20px;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Meeting History Styles */
.meeting-history {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.meeting-history h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.meeting-history-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meeting-history-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meeting-history-info h3 {
    margin: 0 0 8px 0;
    color: white;
    font-size: 1.1rem;
}

.meeting-history-date {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.meeting-history-participants {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.meeting-history-actions {
    display: flex;
    gap: 10px;
}

.no-summary {
    color: #aaa;
    font-style: italic;
    font-size: 0.9rem;
}

.view-summary-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-summary-btn:hover {
    background: var(--primary-hover);
}

/* Update the Get Started button to match your logo colors */
.get-started-btn,
.hero-btn,
.cta-btn {
    background: linear-gradient(135deg, #72F4E3, #4A90E2);
    color: var(--text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.get-started-btn:hover,
.hero-btn:hover,
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(114, 244, 227, 0.3);
    color: var(--text-light);
}

/* Schedule Meeting Page Styles */
.schedule-form {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(114, 244, 227, 0.2);
    box-shadow: 0 4px 20px rgba(114, 244, 227, 0.1);
}

.form-group label {
    color: #fff;
}

.form-control:focus {
    border-color: #72F4E3;
    box-shadow: 0 0 0 0.2rem rgba(114, 244, 227, 0.25);
}

/* Update the submit button */
.submit-btn,
.schedule-submit {
    background: linear-gradient(135deg, #72F4E3, #4A90E2);
    color: var(--text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 600;
}

.submit-btn:hover,
.schedule-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(114, 244, 227, 0.3);
    background: linear-gradient(135deg, #5ad8c8, #3a80d2);
}

/* Update form validation styles */
.form-control.is-valid {
    border-color: #72F4E3;
    background-image: url("data:image/svg+xml,..."); /* Keep existing SVG */
}

.form-control.is-valid:focus {
    border-color: #72F4E3;
    box-shadow: 0 0 0 0.2rem rgba(114, 244, 227, 0.25);
}

/* Update the time picker */
.time-picker-container {
    border: 1px solid rgba(114, 244, 227, 0.2);
}

.time-picker-container:focus-within {
    border-color: #72F4E3;
    box-shadow: 0 0 0 0.2rem rgba(114, 244, 227, 0.25);
}

/* Update any helper text */
.form-text {
    color: rgba(114, 244, 227, 0.8);
}

/* Update success messages */
.success-message {
    color: #72F4E3;
    border: 1px solid rgba(114, 244, 227, 0.2);
    background: rgba(114, 244, 227, 0.1);
}

/* Update the schedule page header */
.schedule-header h1 {
    background: linear-gradient(135deg, #72F4E3, #4A90E2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Update any progress indicators */
.progress-indicator {
    background: linear-gradient(135deg, #72F4E3, #4A90E2);
}

/* Update any links on the schedule page */
.schedule-link {
    color: #72F4E3;
}

.schedule-link:hover {
    color: #5ad8c8;
}

/* Generated Files Section Styles */
.files-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.file-category {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(114, 244, 227, 0.1);
}

.file-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(114, 244, 227, 0.1);
}

.file-category-header i {
    color: #72F4E3;
    font-size: 1.5rem;
}

.file-category-header h3 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.file-item:hover {
    background: rgba(114, 244, 227, 0.1);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    color: #72F4E3;
    font-size: 1.2rem;
}

.file-details {
    flex-grow: 1;
}

.file-name {
    color: rgba(255, 255, 255, 0.9);  /* Brighter white for better visibility */
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 500;  /* Added weight for better readability */
}

.file-meta {
    color: rgba(255, 255, 255, 0.6);  /* Lighter gray for better visibility */
    font-size: 0.8rem;
}

.file-actions {
    display: flex;
    gap: 8px;
}

.file-action-btn {
    background: transparent;
    border: none;
    color: rgba(114, 244, 227, 0.7);  /* Softer cyan for buttons */
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-action-btn:hover {
    color: #72F4E3;  /* Full brightness on hover */
    background: rgba(114, 244, 227, 0.1);
}

.file-action-btn.delete {
    color: #ff4444;
}

.file-action-btn.delete:hover {
    background: rgba(255, 68, 68, 0.1);
}

/* Update link colors */
.file-link {
    color: rgba(114, 244, 227, 0.8);  /* Softer cyan for links */
    text-decoration: none;
    transition: all 0.3s ease;
}

.file-link:hover {
    color: #72F4E3;  /* Full brightness on hover */
    text-decoration: underline;
}

/* Update category headers */
.file-category-header h3 {
    color: rgba(255, 255, 255, 0.95);  /* Brighter white for headers */
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;  /* Added weight for emphasis */
}

/* Update file item hover state */
.file-item:hover {
    background: rgba(114, 244, 227, 0.15);  /* Slightly stronger hover effect */
    transform: translateY(-1px);  /* Subtle lift effect */
}

.recording-item {
    color: rgba(255, 255, 255, 0.6);
}

.recording-actions {
    color: lightblue !important;
}

.recording-header {
    color: rgba(255, 255, 255, 0.85);
}

/* Login prompt styles */
.login-prompt-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(114, 244, 227, 0.2);
    z-index: 1000;
    display: none; /* Hidden by default */
}

.login-prompt-container h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.login-prompt-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.login-prompt-container .login-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-prompt-container .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(114, 244, 227, 0.3);
}

/* Waitlist Section Styles */
.waitlist-section {
    padding: var(--spacing-24) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark), var(--accent-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
    position: relative;
    z-index: 1;
}

.waitlist-container h2 {
    color: var(--white);
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-4);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.waitlist-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-8);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.waitlist-form .form-group {
    text-align: left;
}

.waitlist-form label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-2);
    font-size: var(--font-size-base);
}

.waitlist-form input {
    width: 100%;
    padding: var(--spacing-4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.waitlist-btn {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-xl);
    padding: var(--spacing-4) var(--spacing-8);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-bounce);
    margin-top: var(--spacing-4);
}

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

.waitlist-success {
    text-align: center;
    padding: var(--spacing-8);
}

.waitlist-success i {
    color: var(--success-color);
    font-size: var(--font-size-5xl);
    margin-bottom: var(--spacing-4);
}

.waitlist-success h3 {
    color: var(--white);
    margin-bottom: var(--spacing-2);
    font-size: var(--font-size-2xl);
}

.waitlist-success p {
    color: rgba(255, 255, 255, 0.9);
}

/* Screen sharing styles */
#floatingParticipants {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    z-index: 9999;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    cursor: move;
    width: 220px;
}

#floatingParticipants.dragging {
    cursor: grabbing;
}

.floating-participant {
    width: 200px;
    aspect-ratio: 16/9;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#screenVideo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

/* Download Section Styles */
.download-section {
    padding: var(--spacing-24) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, var(--accent-color) 0%, transparent 50%);
    opacity: 0.2;
    pointer-events: none;
}

.download-description {
    text-align: center;
    color: var(--gray-600);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-4);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

.download-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-3xl);
    padding: var(--spacing-8);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 370px;
    margin: 0 auto;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.download-card:hover::before {
    transform: scaleX(1);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    color: var(--white);
    font-size: var(--font-size-3xl);
    box-shadow: var(--shadow-glow);
}

.download-card h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-3);
    color: var(--gray-900);
}

.download-card p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-6);
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-6);
    border-radius: var(--radius-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-bounce);
    border: none;
    cursor: pointer;
}

.download-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.download-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.download-btn.secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.download-btn.secondary:hover {
    background: var(--gray-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-12);
        text-align: center;
    }
    
    .hero-content h1, .hero h1 {
        font-size: var(--font-size-5xl);
    }
    
    .steps {
        flex-direction: column;
        gap: var(--spacing-12);
    }
    
    .step-connector {
        width: 3px;
        height: 50px;
        background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-8);
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-normal);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .auth-container {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: var(--spacing-4);
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: var(--spacing-4);
        box-shadow: none;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-lg);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1, .hero h1 {
        font-size: var(--font-size-4xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-6);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-4);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-3);
    }
    
    .hero-content h1, .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero-content p, .hero p {
        font-size: var(--font-size-lg);
    }
    
    .section-heading {
        font-size: var(--font-size-3xl);
    }
    
    .feature-card {
        padding: var(--spacing-6);
    }
    
    .download-card {
        padding: var(--spacing-6);
    }
    
    .waitlist-container {
        padding: 0 var(--spacing-3);
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Scroll-triggered navbar effect */
.navbar {
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

/* Modern Footer */
footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-16) 0 var(--spacing-8);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-700), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-4);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
}

.footer-logo i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.footer-links {
    display: flex;
    gap: var(--spacing-6);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-8);
    border-top: 1px solid var(--gray-800);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--spacing-4);
    padding-right: var(--spacing-4);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: var(--font-size-sm);
}

/* --- Custom Meeting Interface Styles for Hero Section --- */
.meeting-interface {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.5);
    animation: slideInRight 1s ease-out 0.3s both;
    position: relative;
    margin-left: auto;
    max-width: 850px; /* Increased width */
    width: 100%;
}

@media (max-width: 900px) {
  .meeting-interface {
    max-width: 98vw;
    margin-left: 0;
  }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-visual {
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 550px;
}

.meeting-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.meeting-header {
    background: rgba(249, 250, 251, 0.95);
    padding: var(--spacing-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.meeting-participants {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.participant-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    transition: all var(--transition-normal);
    position: relative;
}
.participant-avatar.active {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}
.participant-count {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    font-weight: 500;
}

.meeting-controls-index {
    display: flex;
    gap: var(--spacing-3);
}
.meeting-controls-index i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}
.meeting-controls-index i:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.meeting-content {
    padding: var(--spacing-6);
}

.transcript-preview {
    margin-bottom: var(--spacing-6);
}
.transcript-line {
    display: flex;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-3);
    font-size: var(--font-size-sm);
    padding: var(--spacing-2);
    border-radius: var(--radius-lg);
    transition: background-color var(--transition-fast);
}
.transcript-line:hover {
    background: var(--gray-50);
}
.speaker {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 60px;
}
.text {
    color: var(--gray-700);
}
.typing-indicator {
    color: var(--gray-400);
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.ai-insights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}
.insight-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3);
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border-radius: var(--radius-xl);
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all var(--transition-normal);
}
.insight-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}
.insight-card i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 4px var(--primary-glow));
}

/* Glassmorphism for Apple Silicon download card */
.download-card.apple-silicon {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    transition: background 0.3s, box-shadow 0.3s;
}
.download-card.apple-silicon:hover {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.13);
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 500;
    margin-left: 0.0rem;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
    transform: translateX(-15px);
}
.gradient-logo-text {
    background: linear-gradient(90deg, #13c3e6 0%, #3ea8ff 50%, #6b7cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}