

        .ps4-container {
            background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 38px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
    position: absolute;
    top: 21px;
    margin-left: calc(50% - 250px);
    font-family: Roboto;
    

        }

        .ps4-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .ps4-logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            border-radius: 12px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: bold;
            color: white;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
        }

        .ps4-title {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .ps4-subtitle {
            font-size: 14px;
            color: #94a3b8;
            font-weight: 400;
        }

        .form-group {
            margin-bottom: 24px;
                font-family: Roboto;
        }

        .form-label {
            display: block;
            color: #e2e8f0;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-input,
        .form-textarea {
    width: -webkit-fill-available;
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(71, 85, 105, 0.5);
    border-radius: 8px;
    padding: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            background: rgba(30, 41, 59, 0.8);
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15),
                        0 0 20px rgba(59, 130, 246, 0.3);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #64748b;
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
        }

        .form-button {
            width: 100%;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            font-size: 16px;
            font-weight: 700;
            padding: 16px 24px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            margin-top: 12px;
        }

        .form-button:hover {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
            transform: translateY(-2px);
        }

        .form-button:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
        }

        .success-message {
            display: none;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 8px;
            padding: 16px;
            margin-top: 20px;
            color: #10b981;
            text-align: center;
            font-weight: 600;
        }

        .success-message.show {
            display: block;
            animation: slideIn 0.3s ease;
        }

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

        .input-icon {
            color: #3b82f6;
            font-size: 12px;
            margin-right: 4px;
        }

        @media (max-width: 640px) {
            .ps4-container {
                padding: 24px;
            }

            .ps4-title {
                font-size: 24px;
            }
        }










            .folders-grid {
               display: grid;
    gap: 16px;
    height: calc(100vh - 180px);
    overflow-y: auto;
    scrollbar-width: none;
        }

        .folder-item {
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .folder-item:hover {
            border-color: rgba(59, 130, 246, 0.6);
            box-shadow: 0 6px 25px rgba(59, 130, 246, 0.2);
            transform: translateX(4px);
        }

        .folder-info {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .folder-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
            flex-shrink: 0;
        }

        .folder-details {
            flex: 1;
        }

        .folder-name {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .folder-path {
            font-size: 13px;
            color: #64748b;
            font-family: 'Courier New', monospace;
        }

        /* Switch estilo PS4 */
        .switch-container {
            flex-shrink: 0;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 32px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(71, 85, 105, 0.5);
            border: 2px solid rgba(71, 85, 105, 0.8);
            transition: all 0.3s ease;
            border-radius: 32px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 3px;
            bottom: 3px;
            background: #94a3b8;
            transition: all 0.3s ease;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        input:checked + .slider {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            border-color: #3b82f6;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
        }

        input:checked + .slider:before {
            transform: translateX(28px);
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
        }

        input:focus + .slider {
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
        }

        .switch-label {
            display: block;
            text-align: center;
            font-size: 11px;
            color: #64748b;
            margin-top: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        input:checked ~ .switch-label {
            color: #3b82f6;
        }

        .stats-bar {
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 24px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 700;
            color: #3b82f6;
            display: block;
        }

        .stat-label {
            font-size: 12px;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        @media (max-width: 640px) {
            .folder-item {
                flex-direction: column;
                gap: 16px;
            }

            .folder-info {
                width: 100%;
            }

            .switch-container {
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .stats-bar {
                flex-direction: column;
                gap: 16px;
            }
        }

        div#agrupadocarpetas {
    position: absolute;
    right: 0px;
    top: 0px;
        height: calc(100vh - 81px);
}