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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Landing Page Styles */
        .landing-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            background: #000000;
            position: relative;
            overflow: hidden;
        }

        .landing-section::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(34, 251, 9, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -300px;
            right: -300px;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-20px) scale(1.1);
            }
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
        }

        .btn-primary {
            background: linear-gradient(135deg, #22FB09 0%, #1DA708 100%);
            color: #000000;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(34, 251, 9, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: rgba(34, 251, 9, 0.2);
            border-color: #22FB09;
        }

        /* Share Link Join Section */
        .share-link-section {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(34, 251, 9, 0.05);
            border: 1px solid rgba(34, 251, 9, 0.2);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .share-link-section:hover {
            background: rgba(34, 251, 9, 0.1);
            border-color: #22FB09;
        }

        .input-group {
            position: relative;
            margin-bottom: 1rem;
        }

        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #22FB09;
        }

        .input-with-icon {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 12px 20px 12px 50px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .input-with-icon:focus {
            outline: none;
            border-color: #22FB09;
            background: rgba(255, 255, 255, 0.15);
        }

        .input-with-icon::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .join-link-btn {
            background: linear-gradient(135deg, #22FB09 0%, #1DA708 100%);
            color: #000000;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            justify-content: center;
        }

        .join-link-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(34, 251, 9, 0.4);
        }

        /* Active Rooms Section */
        .active-rooms-section {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(34, 251, 9, 0.3);
        }

        .room-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(34, 251, 9, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .room-card:hover {
            background: rgba(34, 251, 9, 0.1);
            border-color: #22FB09;
            transform: translateX(5px);
        }

        .room-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-left: 4rem;

        }

        .room-status {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(34, 251, 9, 0.2);
            color: #22FB09;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
        }

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

        .btn-small {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            border-radius: 25px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .btn-join {
            background: #22FB09;
            color: #000000;
        }

        .btn-join:hover {
            background: #1DA708;
            transform: scale(1.05);
        }

        .btn-share {
            background: transparent;
            color: #22FB09;
            border: 1px solid #22FB09;
        }

        .btn-share:hover {
            background: rgba(34, 251, 9, 0.2);
        }

        /* Video Call Interface Styles */
        .video-call-container {
            display: none;
            height: 100vh;
            background: #000000;
            position: relative;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 20px;
            padding: 20px;
            padding-top: 80px;
            padding-bottom: 120px;
            height: 100vh;
            overflow-y: auto;
            box-sizing: border-box;
            align-items: center;
            justify-items: center;
        }

        .video-wrapper {
            position: relative;
            background: #111111;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
            aspect-ratio: 16/9;
            width: 100%;
            max-width: 100%;
            max-height: calc(100vh - 220px);
        }

        .video-wrapper.active {
            border-color: #22FB09;
        }

        .video-wrapper.connecting {
            border-color: #f59e0b;
        }

        .video-wrapper.pinned {
            border-color: #3b82f6;
            grid-column: span 2;
            grid-row: span 2;
        }

        .video-element {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
        }

        .connecting-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 20;
        }

        .connecting-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(34, 251, 9, 0.3);
            border-top: 3px solid #22FB09;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

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

            100% {
                transform: rotate(360deg);
            }
        }

        .video-controls {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            gap: 5px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-wrapper:hover .video-controls {
            opacity: 1;
        }

        .video-control-btn {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.7);
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .video-control-btn:hover {
            background: rgba(34, 251, 9, 0.3);
            transform: scale(1.1);
        }

        .video-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.8);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(34, 251, 9, 0.3);
        }

        .controls-bar {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.95);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            padding: 15px 20px;
            border-radius: 50px;
            display: flex;
            gap: 15px;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            border: 1px solid rgba(34, 251, 9, 0.3);
            z-index: 300;
            max-width: 95%;
            flex-wrap: nowrap;
            overflow-x: auto;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .control-btn:hover {
            background: rgba(34, 251, 9, 0.3);
            transform: scale(1.1);
        }

        .control-btn.active {
            background: #22FB09;
            color: #000000;
        }

        .control-btn.share-btn {
            background: rgba(34, 251, 9, 0.2);
            border: 2px solid #22FB09;
            color: #22FB09;
        }

        .control-btn.share-btn:hover {
            background: rgba(34, 251, 9, 0.4);
        }

        .control-btn.end-call {
            background: #ef4444;
        }

        .control-btn.end-call:hover {
            background: #dc2626;
        }

        .room-info {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.9);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid #22FB09;
            z-index: 400;
            max-width: 90%;
            flex-wrap: wrap;
            justify-content: center;
        }

        .api-status {
            position: fixed;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.9);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid #22FB09;
            z-index: 400;
        }

        .api-status.connected {
            border-color: #22FB09;
        }

        .api-status.disconnected {
            border-color: #ef4444;
        }

        .participants-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .participants-list {
            position: fixed;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.95);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            padding: 20px;
            border-radius: 15px;
            min-width: 320px;
            max-width: 400px;
            max-height: 500px;
            overflow-y: auto;
            border: 1px solid #22FB09;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
            display: none;
            z-index: 1001;
        }

        .participants-list.show {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(-50%) scale(0.95);
            }

            to {
                opacity: 1;
                transform: translateX(-50%) scale(1);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .participant-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            border-radius: 8px;
            transition: background 0.3s ease;
            margin-bottom: 5px;
        }

        .participant-item:hover {
            background: rgba(34, 251, 9, 0.1);
        }

        .participant-item:hover .participant-actions {
            opacity: 1;
        }

        .participant-info {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .participant-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #22FB09 0%, #1DA708 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: #000000;
            position: relative;
        }

        .participant-avatar.host::after {
            content: '👑';
            position: absolute;
            top: -5px;
            right: -5px;
            font-size: 12px;
        }

        .participant-details {
            flex: 1;
        }

        .participant-name {
            font-size: 14px;
            font-weight: 500;
        }

        .participant-status {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .participant-indicator {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #22FB09;
        }

        .participant-indicator.connecting {
            background: #f59e0b;
            animation: pulse 2s infinite;
        }

        .participant-indicator.muted {
            background: #ef4444;
        }

        @keyframes pulse {
            0% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }

        .participant-actions {
            display: flex;
            gap: 5px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .participant-action-btn {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .participant-action-btn:hover {
            background: rgba(34, 251, 9, 0.3);
            transform: scale(1.1);
        }

        .participant-action-btn.mute {
            color: #ef4444;
        }

        .participant-action-btn.pin {
            color: #3b82f6;
        }

        .participant-action-btn.remove {
            color: #ef4444;
        }

        .chat-panel {
            position: fixed;
            right: -100%;
            top: 0;
            width: 350px;
            max-width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
            border-left: 1px solid #22FB09;
            z-index: 600;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        }

        .chat-panel.open {
            right: 0;
        }

        .chat-header {
            padding: 20px;
            border-bottom: 1px solid #22FB09;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }

        .chat-input-container {
            padding: 20px;
            border-top: 1px solid #22FB09;
        }

        .chat-input {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #22FB09;
            border-radius: 25px;
            padding: 10px 20px;
            color: white;
            outline: none;
        }

        .chat-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .message {
            margin-bottom: 15px;
            padding: 10px 15px;
            background: rgba(34, 251, 9, 0.1);
            border-radius: 15px;
            animation: slideIn 0.3s ease;
            border-left: 3px solid #22FB09;
        }

        .message.own {
            background: rgba(34, 251, 9, 0.2);
            border-left: 3px solid #22FB09;
            margin-left: 20px;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .message-author {
            font-size: 12px;
            color: #22FB09;
            margin-bottom: 5px;
        }

        .message-time {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 5px;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: -400px;
            background: rgba(0, 0, 0, 0.95);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            padding: 15px 25px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: right 0.3s ease;
            z-index: 1000;
            border: 1px solid #22FB09;
            max-width: 350px;
        }

        .notification.show {
            right: 20px;
        }

        .notification.success {
            border-left: 4px solid #22FB09;
        }

        .notification.error {
            border-left: 4px solid #ef4444;
        }

        .notification.info {
            border-left: 4px solid #3b82f6;
        }

        .share-link-container {
            position: fixed;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.95);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            padding: 15px 25px;
            border-radius: 15px;
            display: none;
            align-items: center;
            gap: 15px;
            border: 1px solid #22FB09;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            z-index: 500;
            max-width: 90%;
        }

        .share-link-container.show {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .share-link-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #22FB09;
            border-radius: 8px;
            padding: 8px 15px;
            color: white;
            font-size: 14px;
            min-width: 250px;
            max-width: 400px;
            width: 100%;
            outline: none;
        }

        .copy-btn {
            background: #22FB09;
            color: #000000;
            border: none;
            padding: 8px 15px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background: #1DA708;
        }

        .capacity-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .capacity-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .capacity-fill {
            height: 100%;
            background: #22FB09;
            transition: width 0.3s ease;
        }

        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(34, 251, 9, 0.3), transparent);
            margin: 2rem 0;
        }

        .section-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #22FB09;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 10px 15px;
            background: rgba(34, 251, 9, 0.05);
            border-radius: 15px;
            margin-bottom: 10px;
        }

        .typing-dots {
            display: flex;
            gap: 4px;
        }

        .typing-dot {
            width: 8px;
            height: 8px;
            background: #22FB09;
            border-radius: 50%;
            animation: typing 1.4s infinite;
        }

        .typing-dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dot:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typing {

            0%,
            60%,
            100% {
                transform: translateY(0);
            }

            30% {
                transform: translateY(-10px);
            }
        }

        .waiting-message {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        .waiting-message i {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: #22FB09;
        }

        .chat-toggle {
            position: fixed;
            bottom: 90px;
            right: 20px;
            background: rgba(0, 0, 0, 0.9);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid #22FB09;
            border-radius: 50px;
            padding: 10px 20px;
            display: none;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 200;
        }

        .chat-toggle:hover {
            background: rgba(34, 251, 9, 0.2);
            transform: scale(1.05);
        }

        .chat-toggle.active {
            background: rgba(34, 251, 9, 0.3);
        }

        .invite-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .invite-modal.show {
            display: flex;
        }

        .invite-content {
            background: rgba(0, 0, 0, 0.9);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            border: 1px solid #22FB09;
            border-radius: 20px;
            padding: 2rem;
            max-width: 400px;
            width: 90%;
        }

        .invite-options {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .invite-option {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .invite-option:hover {
            background: rgba(34, 251, 9, 0.1);
            border-color: #22FB09;
        }

        .invite-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(34, 251, 9, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #22FB09;
        }

        /* Tablet and below */
        @media (max-width: 1024px) {
            .video-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 15px;
                padding: 15px;
                padding-top: 70px;
                padding-bottom: 100px;
            }

            .video-wrapper {
                max-height: calc(100vh - 180px);
            }

            .glass-card {
                padding: 2rem;
            }

            .room-info {
                font-size: 12px;
                padding: 8px 15px;
                gap: 8px;
            }

            .share-link-container {
                padding: 12px 20px;
                gap: 12px;
            }
        }

        /* Mobile landscape and below */
        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 12px;
                padding-top: 80px;
                padding-bottom: 100px;
            }

            .video-wrapper {
                max-height: calc(100vh - 200px);
                width: 100%;
            }

            .controls-bar {
                bottom: 15px;
                padding: 10px 15px;
                gap: 10px;
                border-radius: 30px;
            }

            .control-btn {
                width: 42px;
                height: 42px;
                font-size: 16px;
            }

            .chat-panel {
                width: 100%;
            }

            .share-link-container {
                width: 90%;
                flex-direction: column;
                padding: 15px;
                gap: 10px;
                bottom: 90px;
            }

            .share-link-input {
                min-width: 100%;
                width: 100%;
                text-align: center;
            }

            .copy-btn {
                width: 100%;
            }

            .participants-list {
                min-width: 250px;
                max-width: calc(100vw - 20px);
                max-height: 50vh;
            }

            .room-info {
                top: 15px;
                font-size: 11px;
                padding: 8px 12px;
                gap: 6px;
            }

            .api-status {
                top: 70px;
                left: 10px;
                font-size: 10px;
                padding: 6px 12px;
            }

            .room-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
                padding: 1rem;
            }

            .room-actions {
                width: 100%;
                justify-content: space-between;
            }

            .chat-toggle {
                display: flex;
                bottom: 75px;
                right: 15px;
                padding: 8px 15px;
            }

            .video-wrapper.pinned {
                grid-column: span 1;
                grid-row: span 1;
            }

            .glass-card {
                padding: 1.5rem;
                margin: 1rem;
            }

            .invite-content {
                padding: 1.5rem;
                width: 95%;
            }

            .landing-section h1 {
                font-size: 2.5rem;
            }

            .video-label {
                bottom: 10px;
                left: 10px;
                padding: 6px 12px;
                font-size: 12px;
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            .video-grid {
                padding: 8px;
                padding-top: 140px;
                padding-bottom: 85px;
            }

            .controls-bar {
                gap: 8px;
                padding: 8px 12px;
            }

            .control-btn {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }

            .room-info {
                top: 10px;
                font-size: 10px;
                padding: 6px 10px;
            }

            .api-status {
                top: 90px;
                left: 5px;
                font-size: 9px;
                padding: 5px 10px;
            }

            .participants-list {
                min-width: 200px;
                max-width: calc(100vw - 10px);
                padding: 12px;
            }

            .share-link-container {
                bottom: 75px;
                padding: 12px;
            }

            .chat-toggle {
                bottom: 70px;
                right: 10px;
                padding: 6px 12px;
                font-size: 14px;
            }

            .glass-card {
                padding: 1.25rem;
            }

            .landing-section h1 {
                font-size: 2rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 10px 20px;
                font-size: 14px;
            }

            .participant-item {
                padding: 8px;
            }

            .notification {
                right: auto;
                left: -100%;
                top: 15px;
                padding: 12px 15px;
                max-width: calc(100% - 20px);
                width: calc(100% - 20px);
            }

            .notification.show {
                left: 10px;
            }
        }

        /* Extra small devices */
        @media (max-width: 360px) {
            .control-btn {
                width: 35px;
                height: 35px;
                font-size: 13px;
            }

            .controls-bar {
                gap: 6px;
                padding: 6px 10px;
            }

            .room-info {
                font-size: 9px;
                padding: 5px 8px;
            }

            .landing-section h1 {
                font-size: 1.75rem;
            }
        }